X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Ftext-interface.cc;h=abd31a2c696ad2d91a9f392d6b923d52cf30e5b8;hb=bbd36fb0cb6b2d8249cbe628470c736747c330d0;hp=5984eef71b1e543814cb55d60651c4eb5de82abb;hpb=e18531db1f79fb685fbd16d6a2a67bf4b6c09915;p=lilypond.git diff --git a/lily/text-interface.cc b/lily/text-interface.cc index 5984eef71b..abd31a2c69 100644 --- a/lily/text-interface.cc +++ b/lily/text-interface.cc @@ -75,10 +75,8 @@ Text_interface::interpret_string (SCM layout_smob, SCM_BOOL_F); SCM music_encodings = ly_lily_module_constant ("all-music-font-encodings"); - if (scm_memq (encoding, music_encodings) != SCM_BOOL_F) - return fm->word_stencil (str, true).smobbed_copy (); - else - return fm->word_stencil (str, false).smobbed_copy (); + bool is_music = (scm_memq (encoding, music_encodings) != SCM_BOOL_F); + return fm->text_stencil (layout, str, is_music).smobbed_copy (); } MAKE_SCHEME_CALLBACK_WITH_OPTARGS (Text_interface, interpret_markup, 3, 0,