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:
parent
eb4a7b069d
commit
82a0f4dfb1
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
* src/sci_cb.c:
|
* src/sci_cb.c:
|
||||||
Prevent D module tag lookup for D constructor calltips.
|
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>
|
2007-04-13 Enrico Tröger <enrico.troeger@uvena.de>
|
||||||
|
|||||||
@ -207,7 +207,7 @@ gboolean tm_workspace_create_global_tags(const char *pre_process, const char **i
|
|||||||
#endif
|
#endif
|
||||||
TMTagAttrType sort_attrs[] = {
|
TMTagAttrType sort_attrs[] = {
|
||||||
tm_tag_attr_name_t, tm_tag_attr_scope_t,
|
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")))
|
if (NULL == (fp = fopen(temp_file, "w")))
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user