I found another simple bug that was introduced into parser.yy in
the recent rewrite. The script directions '-' and '^' had been
interchanged.

     /Mats

Patch:
----------------------------
diff -urN ../lilypond-1.1.33/lily/parser.yy lily/parser.yy
--- ../lilypond-1.1.33/lily/parser.yy      Thu Feb 25 11:15:00 1999
+++ lily/parser.yy      Fri Feb 26 13:58:34 1999
@@ -1282,8 +1282,8 @@
 
 script_dir:
        '_'     { $$ = DOWN; }
-       | '^'   { $$ = CENTER; }
-       | '-'   { $$ = UP; }
+       | '^'   { $$ = UP; }
+       | '-'   { $$ = CENTER; }
        ;
 
 pre_requests:

Reply via email to