SF.net SVN: geany: [870] trunk
eht16 at users.sourceforge.net
eht16 at xxxxx
Fri Oct 6 23:41:08 UTC 2006
Revision: 870
http://svn.sourceforge.net/geany/?rev=870&view=rev
Author: eht16
Date: 2006-10-06 16:40:58 -0700 (Fri, 06 Oct 2006)
Log Message:
-----------
Changed foreground colour for LaTeX sytle "math" to differentiate it from the "comment" style.
Modified Paths:
--------------
trunk/ChangeLog
trunk/data/filetypes.latex
trunk/src/highlighting.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2006-10-06 23:23:05 UTC (rev 869)
+++ trunk/ChangeLog 2006-10-06 23:40:58 UTC (rev 870)
@@ -4,6 +4,9 @@
* src/filetypes.c, src/document.c:
Implemented simple "shebang" detection. It is used prior to the
filename extension detection.
+ * src/highlighting.c, data/filetypes.latex:
+ Changed foreground colour for LaTeX sytle "math" to differentiate it
+ from the "comment" style.
2006-10-04 Enrico Tröger <enrico.troeger at uvena.de>
Modified: trunk/data/filetypes.latex
===================================================================
--- trunk/data/filetypes.latex 2006-10-06 23:23:05 UTC (rev 869)
+++ trunk/data/filetypes.latex 2006-10-06 23:40:58 UTC (rev 870)
@@ -4,7 +4,7 @@
default=0x00002f;0xffffff;false;false
command=0xff0000;0xffffff;true;false
tag=0x007f7f;0xffffff;true;false
-math=0x007f00;0xffffff;false;false
+math=0x00007f;0xffffff;false;false
comment=0x007f00;0xffffff;false;true
[keywords]
Modified: trunk/src/highlighting.c
===================================================================
--- trunk/src/highlighting.c 2006-10-06 23:23:05 UTC (rev 869)
+++ trunk/src/highlighting.c 2006-10-06 23:40:58 UTC (rev 870)
@@ -858,7 +858,7 @@
get_keyfile_hex(config, config_home, "styling", "default", "0x00002f", "0xffffff", "false", &style_sets[GEANY_FILETYPES_LATEX].styling[0]);
get_keyfile_hex(config, config_home, "styling", "command", "0xff0000", "0xffffff", "true", &style_sets[GEANY_FILETYPES_LATEX].styling[1]);
get_keyfile_hex(config, config_home, "styling", "tag", "0x007f7f", "0xffffff", "true", &style_sets[GEANY_FILETYPES_LATEX].styling[2]);
- get_keyfile_hex(config, config_home, "styling", "math", "0x007f00", "0xffffff", "false", &style_sets[GEANY_FILETYPES_LATEX].styling[3]);
+ get_keyfile_hex(config, config_home, "styling", "math", "0x00007f", "0xffffff", "false", &style_sets[GEANY_FILETYPES_LATEX].styling[3]);
get_keyfile_hex(config, config_home, "styling", "comment", "0x007f00", "0xffffff", "false", &style_sets[GEANY_FILETYPES_LATEX].styling[4]);
style_sets[GEANY_FILETYPES_LATEX].keywords = g_new(gchar*, 2);
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