SF.net SVN: geany: [2114] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Tue Dec 18 17:32:07 UTC 2007


Revision: 2114
          http://geany.svn.sourceforge.net/geany/?rev=2114&view=rev
Author:   ntrel
Date:     2007-12-18 09:32:06 -0800 (Tue, 18 Dec 2007)

Log Message:
-----------
Fix parsing correct D class name when inheriting.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/tagmanager/c.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2007-12-18 17:23:44 UTC (rev 2113)
+++ trunk/ChangeLog	2007-12-18 17:32:06 UTC (rev 2114)
@@ -23,6 +23,8 @@
    since r1952, and not in the standard ctags code. Leaving it in the
    TagManager code however for backwards compatibility with global tag
    files.
+ * tagmanager/c.c:
+   Fix parsing correct D class name when inheriting.
 
 
 2007-12-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>

Modified: trunk/tagmanager/c.c
===================================================================
--- trunk/tagmanager/c.c	2007-12-18 17:23:44 UTC (rev 2113)
+++ trunk/tagmanager/c.c	2007-12-18 17:32:06 UTC (rev 2114)
@@ -2302,8 +2302,9 @@
 	else
 	{
 		cppUngetc (c);
-		if ((isLanguage (Lang_cpp) || isLanguage (Lang_csharp))  &&
-			inheritingDeclaration (st->declaration))
+		if (((isLanguage (Lang_cpp) || isLanguage (Lang_csharp))  &&
+			inheritingDeclaration (st->declaration)) ||
+			isLanguage (Lang_d))
 		{
 			readParents (st, ':');
 		}


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list