Kaydet (Commit) 34a67a92 authored tarafından Nick Treleaven's avatar Nick Treleaven

Fix grouping functions/classes under a nested function.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3831 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 221b3fda
......@@ -8,6 +8,8 @@
Fix grouping symbol list children when parent name has "." character
in for reStructuredText and Conf filetypes (and any in the Misc
group).
* tagmanager/python.c:
Fix grouping functions/classes under a nested function.
2009-05-30 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
......
......@@ -352,10 +352,13 @@ static boolean constructParentString(NestingLevels *nls, int indent,
break;
if (prev)
{
vStringCatS(result, "."); /* make Geany symbol list grouping work properly */
/*
if (prev->type == K_CLASS)
vStringCatS(result, ".");
else
vStringCatS(result, "/");
*/
}
vStringCat(result, nl->name);
is_class = (nl->type == K_CLASS);
......
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