Write tm_tag_enumerator_t and tm_tag_macro_t (e.g. for GTK_STOCK_*)

tags when creating a global tags file, and store the pointerOrder.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1436 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2007-04-05 11:24:10 +00:00
parent cfb073a2bf
commit 3bdadf9727
2 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,10 @@
2007-04-05 Nick Treleaven <nick.treleaven@btinternet.com>
* tagmanager/tm_workspace.c:
Write tm_tag_enumerator_t and tm_tag_macro_t (e.g. for GTK_STOCK_*)
tags when creating a global tags file, and store the pointerOrder.
2007-04-03 Nick Treleaven <nick.treleaven@btinternet.com>
* src/search.c:

View File

@ -294,7 +294,7 @@ gboolean tm_workspace_create_global_tags(const char *pre_process, const char **i
includes_files = NULL;
fclose(fp);
/* FIXME: The following grep command it be remove the lines
/* FIXME: The following grep command removes the lines
* G_BEGIN_DECLS and G_END_DECLS from the header files. The reason is
* that in tagmanager, the files are not correctly parsed and the typedefs
* following these lines are incorrectly parsed. The real fix should,
@ -325,7 +325,8 @@ gboolean tm_workspace_create_global_tags(const char *pre_process, const char **i
return FALSE;
}
tags_array = tm_tags_extract(source_file->tags_array, tm_tag_class_t |
tm_tag_typedef_t | tm_tag_prototype_t | tm_tag_enum_t | tm_tag_macro_with_arg_t);
tm_tag_typedef_t | tm_tag_prototype_t | tm_tag_enum_t | tm_tag_enumerator_t |
tm_tag_macro_t | tm_tag_macro_with_arg_t);
if ((NULL == tags_array) || (0 == tags_array->len))
{
if (tags_array)
@ -346,7 +347,8 @@ gboolean tm_workspace_create_global_tags(const char *pre_process, const char **i
for (i = 0; i < tags_array->len; ++i)
{
tm_tag_write(TM_TAG(tags_array->pdata[i]), fp, tm_tag_attr_type_t
| tm_tag_attr_scope_t | tm_tag_attr_arglist_t | tm_tag_attr_vartype_t);
| tm_tag_attr_scope_t | tm_tag_attr_arglist_t | tm_tag_attr_vartype_t
| tm_tag_attr_pointer_t);
}
fclose(fp);
tm_source_file_free(source_file);