From af366cb65538eb1629f2286aebc9d298e0d986b6 Mon Sep 17 00:00:00 2001 From: Neil Puttock Date: Sat, 15 May 2010 16:26:15 +0100 Subject: [PATCH] Fix post_events list order for multi-measure rests. * lily/parser.yy (event_chord): reverse post_events arg to multi-measure-rest syntax constructor --- lily/parser.yy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lily/parser.yy b/lily/parser.yy index ac0d357f9a..8e29cc904b 100644 --- a/lily/parser.yy +++ b/lily/parser.yy @@ -1485,7 +1485,8 @@ event_chord: | MULTI_MEASURE_REST optional_notemode_duration post_events { Input i; i.set_location (@1, @3); - $$ = MAKE_SYNTAX ("multi-measure-rest", i, $2, $3); + $$ = MAKE_SYNTAX ("multi-measure-rest", i, $2, + scm_reverse_x ($3, SCM_EOL)); } | command_element /* note chord elements are memorized into -- 2.39.5