Kaydet (Commit) 82a0f4df authored tarafından Nick Treleaven's avatar Nick Treleaven

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
üst eb4a7b06
......@@ -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>
......
......@@ -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")))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment