diff options
author | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2004-04-09 23:17:50 +0000 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2004-04-09 23:17:50 +0000 |
commit | 28976d28a04cfb9abe97af7214d7dce11f732604 (patch) | |
tree | 9d9bdc286565efeb4d65baa8a67cf1ecca11c795 /lily/stanza-number-engraver.cc | |
parent | 07c8d2d3826d9dad1cfe1a4924d4b5990386f88c (diff) |
* lily/text-item.cc (interpret_string): new file, select font with
encoding.
* lily/include/lily-guile.hh: ly_XXX_p -> is_XXX. Changes throughout.
* scm/define-markup-commands.scm (encoded-simple): new markup command.
* lily/parser.yy (markup): take encoding from lexer.
Diffstat (limited to 'lily/stanza-number-engraver.cc')
-rw-r--r-- | lily/stanza-number-engraver.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lily/stanza-number-engraver.cc b/lily/stanza-number-engraver.cc index 3ccf2ab485..96696bc7c1 100644 --- a/lily/stanza-number-engraver.cc +++ b/lily/stanza-number-engraver.cc @@ -45,7 +45,7 @@ Stanza_number_engraver::process_music () { SCM stanza = get_property ("stanza"); - if (ly_string_p (stanza) && stanza != last_stanza_) + if (is_string (stanza) && stanza != last_stanza_) { last_stanza_ = stanza; |