SF.net SVN: geany:[5073] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Wed Jun 30 11:34:11 UTC 2010


Revision: 5073
          http://geany.svn.sourceforge.net/geany/?rev=5073&view=rev
Author:   ntrel
Date:     2010-06-30 11:34:11 +0000 (Wed, 30 Jun 2010)

Log Message:
-----------
Re-enable fold.comment for the C lexer - it was disabled to prevent
//{ explicit folding, but that also disables stream comments /* */.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/highlighting.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2010-06-30 07:34:17 UTC (rev 5072)
+++ trunk/ChangeLog	2010-06-30 11:34:11 UTC (rev 5073)
@@ -1,3 +1,10 @@
+2010-06-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
+
+ * src/highlighting.c:
+   Re-enable fold.comment for the C lexer - it was disabled to prevent
+   //{ explicit folding, but that also disables stream comments /* */.
+
+
 2010-06-29  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
 
  * src/ui_utils.c, THANKS, doc/geany.txt, doc/geany.html:

Modified: trunk/src/highlighting.c
===================================================================
--- trunk/src/highlighting.c	2010-06-30 07:34:17 UTC (rev 5072)
+++ trunk/src/highlighting.c	2010-06-30 11:34:11 UTC (rev 5073)
@@ -781,7 +781,7 @@
 
 	sci_set_property(sci, "fold", "1");
 	sci_set_property(sci, "fold.compact", "0");
-	sci_set_property(sci, "fold.comment", "0");
+	sci_set_property(sci, "fold.comment", "1");
 	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