SF.net SVN: geany:[5863] trunk

colombanw at users.sourceforge.net colombanw at xxxxx
Sun Jun 26 21:47:29 UTC 2011


Revision: 5863
          http://geany.svn.sourceforge.net/geany/?rev=5863&view=rev
Author:   colombanw
Date:     2011-06-26 21:47:28 +0000 (Sun, 26 Jun 2011)

Log Message:
-----------
Recognize C# and Vala raw and verbatim strings as string styles

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

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2011-06-26 21:28:20 UTC (rev 5862)
+++ trunk/ChangeLog	2011-06-26 21:47:28 UTC (rev 5863)
@@ -1,3 +1,9 @@
+2011-06-26  Colomban Wendling  <colomban(at)geany(dot)org>
+
+ * src/highlighting.c:
+   Recognize C# and Vala raw and verbatim strings as string styles.
+
+
 2011-06-26  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
 
  * src/callbacks.c, doc/geany.txt, doc/geany.html, README, HACKING,

Modified: trunk/src/highlighting.c
===================================================================
--- trunk/src/highlighting.c	2011-06-26 21:28:20 UTC (rev 5862)
+++ trunk/src/highlighting.c	2011-06-26 21:47:28 UTC (rev 5863)
@@ -3745,7 +3745,10 @@
 		case SCLEX_CPP:
 			return (style == SCE_C_CHARACTER ||
 				style == SCE_C_STRING ||
-				style == SCE_C_STRINGEOL);
+				style == SCE_C_STRINGEOL ||
+				style == SCE_C_STRINGRAW ||
+				style == SCE_C_VERBATIM ||
+				style == SCE_C_TRIPLEVERBATIM);
 
 		case SCLEX_PASCAL:
 			return (style == SCE_PAS_CHARACTER ||


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