]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/parser.yy
release: 1.1.40
[lilypond.git] / lily / parser.yy
index 953ea68aabcc88d7be309552422c0006f618343a..300834a24872042779e92c7028826121cb59a738 100644 (file)
@@ -260,7 +260,8 @@ yylex (YYSTYPE *s,  void * v_l)
 %type <tempo>  tempo_request
 %type <notenametab> notenames_body notenames_block chordmodifiers_block
 
-%expect 8
+
+
 
 %left '-' '+'
 %left '*' '/'
@@ -348,9 +349,7 @@ notenames_body:
        }
        | notenames_body STRING '=' explicit_musical_pitch {
                (*$$)[*$2] = *$4;
-               int n = ($4->notename_i_ + 10 * 7) % 7;
-               int a = $4->accidental_i_ + 2;
-               Musical_pitch::name_str_arr_arr_[n][a] = *$2;
+
                delete $4;
                delete $2;
        }