From 82d3bcd394b763df80253cb37e96444520afa0ae Mon Sep 17 00:00:00 2001 From: Christopher Lam Date: Fri, 4 Dec 2020 18:36:36 +0800 Subject: [PATCH] [core-utils] N_ is identity function N_ is mapped to the identity function. Previously N_ was defined as a macro, which is more tricky to export. --- bindings/guile/core-utils.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/guile/core-utils.scm b/bindings/guile/core-utils.scm index 58685cee05..422fd3a6b6 100644 --- a/bindings/guile/core-utils.scm +++ b/bindings/guile/core-utils.scm @@ -49,7 +49,7 @@ (define G_ gnc:gettext) (define NG_ gnc:ngettext) (define C_ gnc:C-gettext) -(define-syntax-rule (N_ x) x) +(define N_ identity) ;; the following will define _ to call gnc:gettext for guile up to ;; 2.2. It may be removed in the future when minimum guile is 3.0.