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/balloon.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/balloon.cc')
-rw-r--r-- | lily/balloon.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lily/balloon.cc b/lily/balloon.cc index 0b4dd2e98d..6d1b0b0778 100644 --- a/lily/balloon.cc +++ b/lily/balloon.cc @@ -29,7 +29,7 @@ Balloon_interface::print (SCM smob) SCM cb = me->get_property ("balloon-original-callback"); SCM scm_mol = SCM_EOL; - if (ly_procedure_p (cb)) + if (is_procedure (cb)) { scm_mol = scm_call_1 (cb, smob); } |