From: Jan Nieuwenhuizen Date: Mon, 28 Feb 2005 09:51:40 +0000 (+0000) Subject: (LY_DEFINE): Compile fix for systems X-Git-Tag: release/2.5.14~61 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c889e70426def77f88790988eab800dd0f6ba973;p=lilypond.git (LY_DEFINE): Compile fix for systems without libintl. --- diff --git a/ChangeLog b/ChangeLog index aeaf427c03..dac5adfa66 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-02-28 Jan Nieuwenhuizen + + * lily/general-scheme.cc (LY_DEFINE): Compile fix for systems + without libintl. + 2005-02-28 Graham Percival * Documentation/user/basic-notation.itely, diff --git a/lily/general-scheme.cc b/lily/general-scheme.cc index 35b834d225..257b34ed14 100644 --- a/lily/general-scheme.cc +++ b/lily/general-scheme.cc @@ -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",