SF.net SVN: geany:[4417] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Tue Nov 10 18:43:58 UTC 2009


Revision: 4417
          http://geany.svn.sourceforge.net/geany/?rev=4417&view=rev
Author:   ntrel
Date:     2009-11-10 18:43:58 +0000 (Tue, 10 Nov 2009)

Log Message:
-----------
Fix parsing Perl format statements ("other" type doesn't seem to work).

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

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2009-11-10 18:37:23 UTC (rev 4416)
+++ trunk/ChangeLog	2009-11-10 18:43:58 UTC (rev 4417)
@@ -5,6 +5,8 @@
  * src/symbols.c:
    Fix invalid tree iter access when using tv_iters.tag_other but not
    using tv_iters.tag_variable.
+ * HACKING, tagmanager/perl.c:
+   Fix parsing Perl format statements ("other" type doesn't seem to work).
 
 
 2009-11-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>

Modified: trunk/HACKING
===================================================================
--- trunk/HACKING	2009-11-10 18:37:23 UTC (rev 4416)
+++ trunk/HACKING	2009-11-10 18:43:58 UTC (rev 4417)
@@ -373,6 +373,7 @@
 
 In foo.c:
 Edit FooKinds 3rd column to match a s_tag_type_names string in tm_tag.c.
+Warning: "other" type doesn't seem to work.
 
 In filetypes.c, init_builtin_filetypes():
 Set filetypes[GEANY_FILETYPES_FOO].lang = foo's parser number.

Modified: trunk/tagmanager/perl.c
===================================================================
--- trunk/tagmanager/perl.c	2009-11-10 18:37:23 UTC (rev 4416)
+++ trunk/tagmanager/perl.c	2009-11-10 18:43:58 UTC (rev 4417)
@@ -41,7 +41,7 @@
 
 static kindOption PerlKinds [] = {
 	{ TRUE,  'e', "enum",       "constants" },
-	{ TRUE,  'o', "other",      "formats" },
+	{ TRUE,  'e', "enumerator", "formats" },
 	{ TRUE,  'm', "macro",      "labels" },
 	{ TRUE,  'p', "package",    "packages" },
 	{ TRUE,  'f', "function",   "subroutines" },


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