]> git.donarmstrong.com Git - lilypond.git/commitdiff
lily/lexer.ll: Add a backslash to be more syntax-aware editor friendly.
authorDavid Kastrup <dak@gnu.org>
Mon, 12 Sep 2011 16:27:46 +0000 (18:27 +0200)
committerDavid Kastrup <dak@gnu.org>
Mon, 12 Sep 2011 17:10:02 +0000 (19:10 +0200)
lily/lexer.ll

index 1cb8e33b8e031b2e397e0eea91a7b1c67082528d..b445e707d78ff9e67579c45cfa249630cb620b44 100644 (file)
@@ -595,7 +595,7 @@ BOM_UTF8    \357\273\277
        [{}]    {
                return YYText ()[0];
        }
-       [^#{}"\\ \t\n\r\f]+ {
+       [^#{}\"\\ \t\n\r\f]+ {
                string s (YYText ()); 
 
                char c = s[s.length () - 1];