X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fgrob-interface.cc;h=74cd104d376930b24c3be8be9aa83cf0a9ade35d;hb=626609cc7a4ae66412702d2c22eef2eb3088917e;hp=afae13dbecaa922aba2f9c338c5e50f00a1fff9a;hpb=2c8c61b3a5cddbb155786a1ca027528701c91ac9;p=lilypond.git diff --git a/lily/grob-interface.cc b/lily/grob-interface.cc index afae13dbec..74cd104d37 100644 --- a/lily/grob-interface.cc +++ b/lily/grob-interface.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 2002--2006 Han-Wen Nienhuys + (c) 2002--2009 Han-Wen Nienhuys */ #include "grob-interface.hh" @@ -11,7 +11,6 @@ #include "grob.hh" #include "international.hh" #include "protected-scm.hh" -#include "std-string.hh" #include "string-convert.hh" #include "warn.hh" #include "misc.hh" @@ -27,10 +26,10 @@ SCM add_interface (char const *cxx_name, lispy_name += suffix; SCM s = ly_symbol2scm (lispy_name.c_str ()); - SCM d = scm_makfrom0str (descr); + SCM d = scm_from_locale_string (descr); SCM l = parse_symbol_list (vars); - ly_add_interface (s, d, l); + internal_add_interface (s, d, l); return s; }