SF.net SVN: geany:[4907] trunk
eht16 at users.sourceforge.net
eht16 at xxxxx
Fri May 14 14:22:02 UTC 2010
Revision: 4907
http://geany.svn.sourceforge.net/geany/?rev=4907&view=rev
Author: eht16
Date: 2010-05-14 14:22:02 +0000 (Fri, 14 May 2010)
Log Message:
-----------
Set common default "fold.comment" to 0 to disable it. This can be overridden if desired.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/highlighting.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2010-05-14 14:19:11 UTC (rev 4906)
+++ trunk/ChangeLog 2010-05-14 14:22:02 UTC (rev 4907)
@@ -1,6 +1,6 @@
2010-05-14 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
- * src/classbuilder.c:
+ * plugins/classbuilder.c:
Don't make the 'Create Class' menu item document-sensitive
(patch by Colomban Wendling, thanks).
Add namespace support for GTK+ classes.
@@ -8,6 +8,9 @@
Add typedef of the private structure in the header file instead
of declaring it
(all the above from a patch by Colomban Wendling, thanks).
+ * src/highlighting.c:
+ Set common default "fold.comment" to 0 to disable it. This can
+ be overridden if desired.
2010-05-11 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/src/highlighting.c
===================================================================
--- trunk/src/highlighting.c 2010-05-14 14:19:11 UTC (rev 4906)
+++ trunk/src/highlighting.c 2010-05-14 14:22:02 UTC (rev 4907)
@@ -781,7 +781,7 @@
sci_set_property(sci, "fold", "1");
sci_set_property(sci, "fold.compact", "0");
- sci_set_property(sci, "fold.comment", "1");
+ sci_set_property(sci, "fold.comment", "0");
sci_set_property(sci, "fold.preprocessor", "1");
sci_set_property(sci, "fold.at.else", "1");
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