Revision: 3141 http://geany.svn.sourceforge.net/geany/?rev=3141&view=rev Author: eht16 Date: 2008-10-22 15:35:51 +0000 (Wed, 22 Oct 2008)
Log Message: ----------- Change style for 'identifier3' to bold to be in sync with the other identifier styles.
Modified Paths: -------------- trunk/ChangeLog trunk/data/filetypes.css trunk/src/highlighting.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2008-10-20 18:18:28 UTC (rev 3140) +++ trunk/ChangeLog 2008-10-22 15:35:51 UTC (rev 3141) @@ -1,3 +1,10 @@ +2008-10-22 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de> + + * src/highlighting.c, data/filetypes.css: + Change style for 'identifier3' to bold to be in sync with the + other identifier styles. + + 2008-10-20 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
* src/about.c:
Modified: trunk/data/filetypes.css =================================================================== --- trunk/data/filetypes.css 2008-10-20 18:18:28 UTC (rev 3140) +++ trunk/data/filetypes.css 2008-10-22 15:35:51 UTC (rev 3141) @@ -18,7 +18,7 @@ identifier2=0x6b6bff;0xffffff;true;false important=0x990000;0xffffff;true;false directive=0x006bff;0xffffff;false;true -identifier3=0x00c8ff;0xffffff;false;false +identifier3=0x00c8ff;0xffffff;true;false pseudoelement=0x666610;0xffffff;true;true extended_identifier=0x9090a0;0xffffff;true;false extended_pseudoclass=0x907080;0xffffff;true;true
Modified: trunk/src/highlighting.c =================================================================== --- trunk/src/highlighting.c 2008-10-20 18:18:28 UTC (rev 3140) +++ trunk/src/highlighting.c 2008-10-22 15:35:51 UTC (rev 3141) @@ -1942,7 +1942,7 @@ get_keyfile_hex(config, config_home, "styling", "identifier2", "0x6b6bff", "0xffffff", "true", &style_sets[GEANY_FILETYPES_CSS].styling[14]); get_keyfile_hex(config, config_home, "styling", "important", "0x990000", "0xffffff", "true", &style_sets[GEANY_FILETYPES_CSS].styling[15]); get_keyfile_hex(config, config_home, "styling", "directive", "0x006bff", "0xffffff", "false", &style_sets[GEANY_FILETYPES_CSS].styling[16]); - get_keyfile_hex(config, config_home, "styling", "identifier3", "0x00c8ff", "0xffffff", "false", &style_sets[GEANY_FILETYPES_CSS].styling[17]); + get_keyfile_hex(config, config_home, "styling", "identifier3", "0x00c8ff", "0xffffff", "true", &style_sets[GEANY_FILETYPES_CSS].styling[17]); get_keyfile_hex(config, config_home, "styling", "pseudoelement", "0x666610", "0xffffff", "true", &style_sets[GEANY_FILETYPES_CSS].styling[18]); get_keyfile_hex(config, config_home, "styling", "extended_identifier", "0x9090a0", "0xffffff", "true", &style_sets[GEANY_FILETYPES_CSS].styling[19]); get_keyfile_hex(config, config_home, "styling", "extended_pseudoclass", "0x907080", "0xffffff", "true", &style_sets[GEANY_FILETYPES_CSS].styling[20]);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.