From c889e70426def77f88790988eab800dd0f6ba973 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Mon, 28 Feb 2005 09:51:40 +0000 Subject: [PATCH] (LY_DEFINE): Compile fix for systems without libintl. --- ChangeLog | 5 +++++ lily/general-scheme.cc | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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", -- 2.39.5