diff --git a/ChangeLog b/ChangeLog index 4fda1742..61667b38 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/tagmanager/python.c b/tagmanager/python.c index 7432602a..032fdf60 100644 --- a/tagmanager/python.c +++ b/tagmanager/python.c @@ -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);