SF.net SVN: geany: [864] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Tue Oct 3 13:45:37 UTC 2006


Revision: 864
          http://svn.sourceforge.net/geany/?rev=864&view=rev
Author:   eht16
Date:     2006-10-03 06:45:30 -0700 (Tue, 03 Oct 2006)

Log Message:
-----------
Added keyword "until".

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/data/filetypes.sh
    trunk/src/highlighting.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2006-10-03 13:16:42 UTC (rev 863)
+++ trunk/ChangeLog	2006-10-03 13:45:30 UTC (rev 864)
@@ -7,6 +7,7 @@
    Reordered command line options alphabetically.
    Added new command line option --line to set the initial line for the
    first opened file.
+ * data/filetypes.sh, src/highlighting.c: Added keyword "until".
 
 
 2006-10-02  Nick Treleaven  <nick.treleaven at btinternet.com>

Modified: trunk/data/filetypes.sh
===================================================================
--- trunk/data/filetypes.sh	2006-10-03 13:16:42 UTC (rev 863)
+++ trunk/data/filetypes.sh	2006-10-03 13:45:30 UTC (rev 864)
@@ -14,7 +14,7 @@
 scalar=0x105090;0xffffff;false;false
 
 [keywords]
-primary=break case continue do done elif else esac eval exit export fi for function goto if in integer return set shift then while
+primary=break case continue do done elif else esac eval exit export fi for function goto if in integer return set shift then until while
 
 
 [settings]

Modified: trunk/src/highlighting.c
===================================================================
--- trunk/src/highlighting.c	2006-10-03 13:16:42 UTC (rev 863)
+++ trunk/src/highlighting.c	2006-10-03 13:45:30 UTC (rev 864)
@@ -1638,7 +1638,7 @@
 	get_keyfile_hex(config, config_home, "styling", "scalar", "0x105090", "0xffffff", "false", &style_sets[GEANY_FILETYPES_SH].styling[10]);
 
 	style_sets[GEANY_FILETYPES_SH].keywords = g_new(gchar*, 2);
-	get_keyfile_keywords(config, config_home, "keywords", "primary", GEANY_FILETYPES_SH, 0, "break case continue do done elif else esac eval exit export fi for goto if in integer return set shift then while");
+	get_keyfile_keywords(config, config_home, "keywords", "primary", GEANY_FILETYPES_SH, 0, "break case continue do done elif else esac eval exit export fi for goto if in integer return set shift then until while");
 	style_sets[GEANY_FILETYPES_SH].keywords[1] = NULL;
 
 	get_keyfile_wordchars(config, config_home, GEANY_WORDCHARS,


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