diff options
author | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2004-04-12 12:48:42 +0000 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2004-04-12 12:48:42 +0000 |
commit | ba858880848d6aca1de4401d185860eb2017a01c (patch) | |
tree | 67f45c7c0fe35c51570093abe75ae804ec51b8ba /lily/bar-engraver.cc | |
parent | 8a79cd32eeeaffb4d1b6ad551b0b2a23a6029db7 (diff) |
* lily/lexer.ll: change is_string -> ly_c_string_p
* lily/lyric-engraver.cc (get_voice_to_lyrics): recursively go
higher for finding Voice. (backportme)
Diffstat (limited to 'lily/bar-engraver.cc')
-rw-r--r-- | lily/bar-engraver.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lily/bar-engraver.cc b/lily/bar-engraver.cc index 3802d20f6d..031609a75b 100644 --- a/lily/bar-engraver.cc +++ b/lily/bar-engraver.cc @@ -77,7 +77,7 @@ Bar_engraver::finalize () void Bar_engraver::process_acknowledged_grobs () { - if (!bar_ && is_string (get_property ("whichBar"))) + if (!bar_ && ly_c_string_p (get_property ("whichBar"))) { create_bar (); } |