SF.net SVN: geany:[5281] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Tue Oct 5 14:44:00 UTC 2010


Revision: 5281
          http://geany.svn.sourceforge.net/geany/?rev=5281&view=rev
Author:   ntrel
Date:     2010-10-05 14:44:00 +0000 (Tue, 05 Oct 2010)

Log Message:
-----------
Parse property, constructor, destructor as functions (patch by
pottersson, thanks - #2992167).

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

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2010-10-05 11:07:10 UTC (rev 5280)
+++ trunk/ChangeLog	2010-10-05 14:44:00 UTC (rev 5281)
@@ -4,6 +4,9 @@
    Don't cache overridden lexer properties.
    Add foreach_strv() to plugin API.
    Add utils_strv_join().
+ * tagmanager/basic.c:
+   Parse property, constructor, destructor as functions (patch by
+   pottersson, thanks - #2992167).
 
 
 2010-10-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>

Modified: trunk/tagmanager/basic.c
===================================================================
--- trunk/tagmanager/basic.c	2010-10-05 11:07:10 UTC (rev 5280)
+++ trunk/tagmanager/basic.c	2010-10-05 14:44:00 UTC (rev 5281)
@@ -55,6 +55,9 @@
 	{"const", K_CONST}, /* must always be the third */
 	{"function", K_FUNCTION},
 	{"sub", K_FUNCTION},
+	{"property", K_FUNCTION},
+	{"constructor", K_FUNCTION},
+	{"destructor", K_FUNCTION},
 	{"private sub", K_FUNCTION},
 	{"public sub", K_FUNCTION},
 	{"private function", K_FUNCTION},


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