Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Sat, 27 Aug 2022 21:57:50 UTC Commit: 8ff56a5c779ffcccef0ceb0b412be62f606c76e1 https://github.com/geany/geany/commit/8ff56a5c779ffcccef0ceb0b412be62f606c76...
Log Message: ----------- Rename tm_tag_file_t to tm_tag_local_var_t
tm_tag_file_t is unused in Geany (and we'll probably never need tags for files) so let's use it for local variable tags.
Modified Paths: -------------- src/tagmanager/tm_parser.h
Modified: src/tagmanager/tm_parser.h 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -40,7 +40,7 @@ typedef enum tm_tag_externvar_t = 32768, /**< Extern or forward declaration */ tm_tag_macro_t = 65536, /**< Macro (without arguments) */ tm_tag_macro_with_arg_t = 131072, /**< Parameterized macro */ - tm_tag_file_t = 262144, /**< File (Pseudo tag) - obsolete */ + tm_tag_local_var_t = 262144, /**< Local variable (inside function) */ tm_tag_other_t = 524288, /**< Other (non C/C++/Java tag) */ tm_tag_max_t = 1048575 /**< Maximum value of TMTagType */ } TMTagType;
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).