CMUCL commit: src/code (intl.lisp)
Raymond Toy
rtoy at common-lisp.net
Mon Apr 19 14:18:16 CEST 2010
Date: Monday, April 19, 2010 @ 08:18:16
Author: rtoy
Path: /project/cmucl/cvsroot/src/code
Modified: intl.lisp
Remove _N"" reader macro from docstrings when possible.
-----------+
intl.lisp | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
Index: src/code/intl.lisp
diff -u src/code/intl.lisp:1.4 src/code/intl.lisp:1.5
--- src/code/intl.lisp:1.4 Sun Apr 18 12:47:37 2010
+++ src/code/intl.lisp Mon Apr 19 08:18:16 2010
@@ -1,6 +1,6 @@
;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Package: INTL -*-
-;;; $Revision: 1.4 $
+;;; $Revision: 1.5 $
;;; Copyright 1999-2010 Paul Foley (mycroft at actrix.gen.nz)
;;;
;;; Permission is hereby granted, free of charge, to any person obtaining
@@ -23,7 +23,7 @@
;;; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
;;; USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
;;; DAMAGE.
-(ext:file-comment "$Header: /project/cmucl/cvsroot/src/code/intl.lisp,v 1.4 2010-04-18 16:47:37 rtoy Exp $")
+(ext:file-comment "$Header: /project/cmucl/cvsroot/src/code/intl.lisp,v 1.5 2010-04-19 12:18:16 rtoy Exp $")
(in-package "INTL")
@@ -47,7 +47,7 @@
(defvar *locale* "C")
(defvar *default-domain* nil
- _N"The message-lookup domain used by INTL:GETTEXT and INTL:NGETTEXT.
+ "The message-lookup domain used by INTL:GETTEXT and INTL:NGETTEXT.
Use (INTL:TEXTDOMAIN \"whatever\") in each source file to set this.")
(defvar *loaded-domains* (make-hash-table :test 'equal))
(defvar *locale-aliases* (make-hash-table :test 'equal))
@@ -526,22 +526,22 @@
(setf *default-domain* ,domain)))
(defmacro gettext (string)
- _N"Look up STRING in the current message domain and return its translation."
+ "Look up STRING in the current message domain and return its translation."
`(dgettext ,*default-domain* ,string))
(defmacro ngettext (singular plural n)
- _N"Look up the singular or plural form of a message in the current domain."
+ "Look up the singular or plural form of a message in the current domain."
`(dngettext ,*default-domain* ,singular ,plural ,n))
(declaim (inline dgettext))
(defun dgettext (domain string)
- _N"Look up STRING in the specified message domain and return its translation."
+ "Look up STRING in the specified message domain and return its translation."
#+(or)(declare (optimize (speed 3) (space 2) (safety 0)))
(let ((domain (and domain (find-domain domain *locale*))))
(or (and domain (domain-lookup string domain)) string)))
(defun dngettext (domain singular plural n)
- _N"Look up the singular or plural form of a message in the specified domain."
+ "Look up the singular or plural form of a message in the specified domain."
(declare (type integer n)
#+(or)(optimize (speed 3) (space 2) (safety 0)))
(let* ((domain (and domain (find-domain domain *locale*)))
More information about the cmucl-commit
mailing list