Allow overloaded argument lists in global tag files.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1449 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2007-04-15 12:14:33 +00:00
parent eb4a7b069d
commit 82a0f4dfb1
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
* src/sci_cb.c:
Prevent D module tag lookup for D constructor calltips.
* tagmanager/tm_workspace.c:
Allow overloaded argument lists in global tag files.
2007-04-13 Enrico Tröger <enrico.troeger@uvena.de>

View File

@ -207,7 +207,7 @@ gboolean tm_workspace_create_global_tags(const char *pre_process, const char **i
#endif
TMTagAttrType sort_attrs[] = {
tm_tag_attr_name_t, tm_tag_attr_scope_t,
tm_tag_attr_type_t, 0
tm_tag_attr_type_t, tm_tag_attr_arglist_t, 0
};
if (NULL == (fp = fopen(temp_file, "w")))