Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Sat, 06 Jul 2024 15:15:16 UTC Commit: 7a2f1dc667da9e488c12cd299d53d230302a1da7 https://github.com/geany/geany-plugins/commit/7a2f1dc667da9e488c12cd299d53d2...
Log Message: ----------- geanygendoc: Sort tag types alphabetically
No functional changes, it just helps updating the table.
Modified Paths: -------------- geanygendoc/src/ggd-tag-utils.c
Modified: geanygendoc/src/ggd-tag-utils.c 8 lines changed, 4 insertions(+), 4 deletions(-) =================================================================== @@ -252,10 +252,13 @@ static const struct { { tm_tag_class_t, "class" }, { tm_tag_enum_t, "enum" }, { tm_tag_enumerator_t, "enumval" }, + { tm_tag_externvar_t, "extern" }, { tm_tag_field_t, "field" }, { tm_tag_function_t, "function" }, { tm_tag_interface_t, "interface" }, { tm_tag_local_var_t, "local" }, + { tm_tag_macro_t, "define" }, + { tm_tag_macro_with_arg_t, "macro" }, { tm_tag_member_t, "member" }, { tm_tag_method_t, "method" }, { tm_tag_namespace_t, "namespace" }, @@ -264,10 +267,7 @@ static const struct { { tm_tag_struct_t, "struct" }, { tm_tag_typedef_t, "typedef" }, { tm_tag_union_t, "union" }, - { tm_tag_variable_t, "variable" }, - { tm_tag_externvar_t, "extern" }, - { tm_tag_macro_t, "define" }, - { tm_tag_macro_with_arg_t, "macro" } + { tm_tag_variable_t, "variable" } };
/**
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).