[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.
This commit is contained in:
Christopher Lam 2020-12-04 18:36:36 +08:00
parent a2ef6ed6a5
commit 82d3bcd394

View File

@ -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.