Revision: 4828 http://geany.svn.sourceforge.net/geany/?rev=4828&view=rev Author: eht16 Date: 2010-04-17 16:12:13 +0000 (Sat, 17 Apr 2010)
Log Message: ----------- Another attempt to fix the PHP parser regexp for parsing functions.
Modified Paths: -------------- trunk/ChangeLog trunk/tagmanager/php.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-04-17 14:55:14 UTC (rev 4827) +++ trunk/ChangeLog 2010-04-17 16:12:13 UTC (rev 4828) @@ -8,6 +8,8 @@ src/plugindata.h: Add 'Remove Markers' and 'Remove Error Indicators' keybindings. Add missing documentation for 'Reset Zoom' keybinding. + * tagmanager/php.c: + Another attempt to fix the PHP parser regexp for parsing functions.
2010-04-11 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/tagmanager/php.c =================================================================== --- trunk/tagmanager/php.c 2010-04-17 14:55:14 UTC (rev 4827) +++ trunk/tagmanager/php.c 2010-04-17 16:12:13 UTC (rev 4828) @@ -80,7 +80,7 @@ addTagRegex(language, "^[ \t]*const[ \t]*([" ALPHA "_][" ALNUM "_]*)[ \t]*[=;]", "\1", "m,macro,macros", NULL); addCallbackRegex(language, - "^[ \t]*([public|protected|private|static]*[ \t]*)*function[ \t]+&?[ \t]*([" ALPHA "_][" ALNUM "_]*)[[:space:]]*(\([^)]*\))", + "^[ \t]*[(public|protected|private|static)[ \t]*]*[ \t]*function[ \t]+&?[ \t]*([" ALPHA "_][" ALNUM "_]*)[[:space:]]*(\([^)]*\))", NULL, function_cb); addTagRegex(language, "^[ \t]*(\$|::\$|\$this->)([" ALPHA "_][" ALNUM "_]*)[ \t]*=", "\2", "v,variable,variables", NULL);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.