SF.net SVN: geany: [1886] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Mon Sep 17 15:46:41 UTC 2007


Revision: 1886
          http://geany.svn.sourceforge.net/geany/?rev=1886&view=rev
Author:   ntrel
Date:     2007-09-17 08:46:41 -0700 (Mon, 17 Sep 2007)

Log Message:
-----------
Show Haxe enum types in the symbol list.

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

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2007-09-17 15:28:27 UTC (rev 1885)
+++ trunk/ChangeLog	2007-09-17 15:46:41 UTC (rev 1886)
@@ -7,6 +7,8 @@
    Apply code from blackdog to parse Haxe typedef tags (thanks).
    Show Haxe typedefs in the symbol list.
    Add tag_type treeview iter.
+ * tagmanager/haxe.c:
+   Show Haxe enum types in the symbol list.
 
 
 2007-09-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>

Modified: trunk/tagmanager/haxe.c
===================================================================
--- trunk/tagmanager/haxe.c	2007-09-17 15:28:27 UTC (rev 1885)
+++ trunk/tagmanager/haxe.c	2007-09-17 15:46:41 UTC (rev 1886)
@@ -47,13 +47,12 @@
 } hxKind;
 
 static kindOption HxKinds [] = {
-	{ TRUE,  'm', "method",	  "methods"			   },
-	{ TRUE,  'c', "class",		  "classes"			   },
-	{ TRUE,  'e', "enums",		  "enumerations"			   },
-	{ TRUE,  'v', "variable",	  "variables"	   },
-	{ TRUE,  'i', "interface",	  "interfaces"	   },
-	{ TRUE,  't', "typedef",	  "typedefs"	   },
-
+	{ TRUE,  'm', "method",		"methods" },
+	{ TRUE,  'c', "class",		"classes" },
+	{ TRUE,  'e', "enum",		"enumerations" },
+	{ TRUE,  'v', "variable",	"variables" },
+	{ TRUE,  'i', "interface",	"interfaces" },
+	{ TRUE,  't', "typedef",	"typedefs" },
 };
 
 static void findHxTags (void)


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