Revision: 3680 http://geany.svn.sourceforge.net/geany/?rev=3680&view=rev Author: ntrel Date: 2009-04-03 13:53:04 +0000 (Fri, 03 Apr 2009)
Log Message: ----------- Move ActionScript to the Script group. Fix wording & typo.
Modified Paths: -------------- trunk/ChangeLog trunk/doc/geany.txt trunk/src/filetypes.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2009-04-03 13:45:47 UTC (rev 3679) +++ trunk/ChangeLog 2009-04-03 13:53:04 UTC (rev 3680) @@ -1,3 +1,10 @@ +2009-04-03 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com> + + * src/filetypes.c, doc/geany.txt: + Move ActionScript to the Script group. + Fix wording & typo. + + 2009-03-31 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* doc/geany.txt, doc/geany.html, src/main.c:
Modified: trunk/doc/geany.txt =================================================================== --- trunk/doc/geany.txt 2009-04-03 13:45:47 UTC (rev 3679) +++ trunk/doc/geany.txt 2009-04-03 13:53:04 UTC (rev 3680) @@ -3384,8 +3384,8 @@ Then edit it and add any of the available elements listed in the file or remove any of the existing elements. Of course, you can also reorder the elements as you wish and add or remove additional separators. -This file must be valid XML unless it can't be loaded and the global toolbar -UI definition is used. +This file must be valid XML, otherwise the global toolbar UI definition +will be used instead.
.. note:: (1) You cannot add new actions which are not listed below. @@ -3429,7 +3429,7 @@ Search Find the entered text in the current file (only useful if you also use 'SearchEntry') GotoEntry The goto field belonging to the 'Goto' element (can be used alone) -Goto Jump to the entered line number (only useful if you also use 'SearchEntry') +Goto Jump to the entered line number (only useful if you also use 'GotoEntry') Preferences Show the preferences dialog Quit Quit Geany ================== ==============================================================================
Modified: trunk/src/filetypes.c =================================================================== --- trunk/src/filetypes.c 2009-04-03 13:45:47 UTC (rev 3679) +++ trunk/src/filetypes.c 2009-04-03 13:53:04 UTC (rev 3680) @@ -481,7 +481,7 @@ ft->pattern = utils_strv_new("*.as", NULL); ft->comment_open = g_strdup("//"); ft->comment_close = NULL; - ft->group = GEANY_FILETYPE_GROUP_COMPILED; + ft->group = GEANY_FILETYPE_GROUP_SCRIPT;
#define R ft = filetypes[GEANY_FILETYPES_R];
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.