]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lexer.ll
* lily/parser.yy (lilypond): Add token aliases.
[lilypond.git] / lily / lexer.ll
index 44905a7ce09ef8433b57858658d30397de828fbe..bca7f0a936b6f1db2a0fc3419de7bf77d38d6797 100644 (file)
@@ -589,9 +589,9 @@ HYPHEN              --
 
     switch (c) {
     case '>':
-       return E_BIGGER;
+       return E_ANGLE_CLOSE;
     case '<':
-       return E_SMALLER;
+       return E_ANGLE_OPEN;
     case '!':
        return E_EXCLAMATION;
     case '(':
@@ -599,9 +599,9 @@ HYPHEN              --
     case ')':
        return E_CLOSE;
     case '[':
-       return E_LEFTSQUARE;
+       return E_BRACKET_OPEN;
     case ']':
-       return E_RIGHTSQUARE;
+       return E_BRACKET_CLOSE;
     case '~':
        return E_TILDE;
     case '\\':