]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/parser.yy
release: 1.5.36
[lilypond.git] / lily / parser.yy
index c7a905166c41759b000e5f08f1f3f93844af38d7..3f972dcc01ec64eb6a8282dc29757a6f8ba6ece8 100644 (file)
@@ -1744,12 +1744,14 @@ bass_figure:
 
 br_bass_figure:
        '[' bass_figure {
-               unsmob_music ($2)->set_mus_property ("bracket-start", SCM_BOOL_T);
+               $$ = $2;
+               unsmob_music ($$)->set_mus_property ("bracket-start", SCM_BOOL_T);
        }
        | bass_figure   {
-
+               $$ = $1;
        }
        | br_bass_figure ']' {
+               $$ = $1;
                unsmob_music ($1)->set_mus_property ("bracket-stop", SCM_BOOL_T);
        }
        ;