]> git.donarmstrong.com Git - lilypond.git/commitdiff
(LY_DEFINE): Compile fix for systems
authorJan Nieuwenhuizen <janneke@gnu.org>
Mon, 28 Feb 2005 09:51:40 +0000 (09:51 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Mon, 28 Feb 2005 09:51:40 +0000 (09:51 +0000)
without libintl.

ChangeLog
lily/general-scheme.cc

index aeaf427c03a5602822876b91e9ac86ecfa8b7595..dac5adfa664b5524d3faed0bffd8cb021ec81ffb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-02-28  Jan Nieuwenhuizen  <janneke@gnu.org>
+
+       * lily/general-scheme.cc (LY_DEFINE): Compile fix for systems
+       without libintl.
+
 2005-02-28  Graham Percival  <gperlist@shaw.ca>
 
        * Documentation/user/basic-notation.itely,
index 35b834d22527c0129332f516aa13eebcbcc8ff22..257b34ed14446b169e449579f856eb8b5530b1df 100644 (file)
@@ -170,7 +170,7 @@ LY_DEFINE (ly_gettext, "ly:gettext",
 {
   SCM_ASSERT_TYPE (scm_is_string (string), string, SCM_ARG1,
                   __FUNCTION__, "string");
-  return scm_makfrom0str (gettext (scm_i_string_chars (string)));
+  return scm_makfrom0str (_ (scm_i_string_chars (string)));
 }
 
 LY_DEFINE (ly_output_backend, "ly:output-backend",