From: Han-Wen Nienhuys Date: Fri, 14 May 2004 06:49:52 +0000 (+0000) Subject: (My_lily_lexer): bugfix; op should be tag. X-Git-Tag: release/2.3.2~20 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=635e87b0c8b98b3d4b5e3c0b2a79cce9e34533d0;p=lilypond.git (My_lily_lexer): bugfix; op should be tag. --- diff --git a/ChangeLog b/ChangeLog index 66c27657cb..222a4fe721 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-05-14 Han-Wen Nienhuys + + * lily/parser.yy (My_lily_lexer): bugfix; op should be tag. + 2004-05-10 Han-Wen Nienhuys * scripts/convert-ly.py (FatalConversionError.func): handle + in diff --git a/lily/parser.yy b/lily/parser.yy index 5d181da880..781cde635e 100644 --- a/lily/parser.yy +++ b/lily/parser.yy @@ -2716,7 +2716,7 @@ property_op_to_music (SCM op) internal_type_checking_global_b = itc; } - if (op == ly_symbol2scm ("poppush")) + if (tag == ly_symbol2scm ("poppush")) m->set_property ("pop-first", SCM_BOOL_T);