mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-29 12:14:31 -06:00
d777128e6f
1. Instead of creating a C wrapper around gettext to then wrap in guile, use guile's builtin gettext support directly. The code still defines the _ and N_ shorthands. However it doesn't really warant a separate module just for these two shorthands. Instead define them in core-utils. So all code wanting to use _ or N_ in guile should now use the (gnucash core-utils) module. The bulk of this commit is actually deleting the scm-gettext target and using (gnucash core-utils) instead of (gnucash gettext). 2. As the definition of _ and N_ is removed from app-utils.scm, the app-utils test for a functional N_ macro has been moved to a new test file in the guile bindinds tests. 3. The (gnucash gettext) module has been deprecated. Use (gnucash core-utils) from now on.
46 lines
1.7 KiB
Scheme
46 lines
1.7 KiB
Scheme
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;; core-utils.scm
|
|
;;; Guile module for core-utils
|
|
;;;
|
|
;;; Copyright 2006 Chris Shoemaker <c.shoemaker@cox.net>
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; This program is free software; you can redistribute it and/or
|
|
;; modify it under the terms of the GNU General Public License as
|
|
;; published by the Free Software Foundation; either version 2 of
|
|
;; the License, or (at your option) any later version.
|
|
;;
|
|
;; This program is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
;;
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with this program; if not, contact:
|
|
;;
|
|
;; Free Software Foundation Voice: +1-617-542-5942
|
|
;; 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652
|
|
;; Boston, MA 02110-1301, USA gnu@gnu.org
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
(define-module (gnucash core-utils))
|
|
|
|
;; Guile 2 needs to find the symbols from the extension at compile time already
|
|
(eval-when
|
|
(compile load eval expand)
|
|
(load-extension "libgnucash-guile" "gnc_guile_bindings_init"))
|
|
(use-modules (sw_core_utils))
|
|
|
|
; Export the swig-wrapped symbols in the public interface of this module
|
|
(let ((i (module-public-interface (current-module))))
|
|
(module-use! i (resolve-interface '(sw_core_utils))))
|
|
|
|
(define-public gnc:version (gnc-version))
|
|
;; gettext functions
|
|
(define-public _ gettext)
|
|
(define-syntax N_
|
|
(syntax-rules ()
|
|
((_ x) x)))
|
|
(export N_)
|