]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.10
authorfred <fred>
Fri, 15 Nov 1996 10:35:04 +0000 (10:35 +0000)
committerfred <fred>
Fri, 15 Nov 1996 10:35:04 +0000 (10:35 +0000)
src/lexer.l

index 1e3443e56e9b2671f067a1fde2814a4f9d25585c..14892c3406a22542767ae07668bc633010a25d02 100644 (file)
@@ -86,11 +86,11 @@ REAL                [0-9]+(\.[0-9]*)?
 <notes>\$      {
        BEGIN(INITIAL); return '$';
 }
-<notes>[\[){]  { /* parens () are NO mistake */
+<notes>[\[{)]  { /* parens () are NO mistake */
        yylval.c = YYText()[0];
        return OPEN_REQUEST_PARENS;
 }
-<notes>[\]()}] { /* parens () are NO mistake */
+<notes>[\]}(]  { /* parens () are NO mistake */
        yylval.c = YYText()[0];
        return CLOSE_REQUEST_PARENS;
 }