emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master e214da2: * src/editfns.c (Fngettext): Fix typos in


From: Juanma Barranquero
Subject: [Emacs-diffs] master e214da2: * src/editfns.c (Fngettext): Fix typos in docstring.
Date: Mon, 10 Jun 2019 00:16:25 -0400 (EDT)

branch: master
commit e214da2dacfec2d118fc60198abb8e87e4164c3a
Author: Juanma Barranquero <address@hidden>
Commit: Juanma Barranquero <address@hidden>

    * src/editfns.c (Fngettext): Fix typos in docstring.
---
 src/editfns.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/editfns.c b/src/editfns.c
index 6fb43af..ee538e5 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -2840,12 +2840,12 @@ usage: (save-restriction &rest BODY)  */)
 /* i18n (internationalization).  */
 
 DEFUN ("ngettext", Fngettext, Sngettext, 3, 3, 0,
-       doc: /* Return the translation of MSGID (plural MSGID_PLURAL) depending 
on N.
+       doc: /* Return the translation of MSGID (plural MSGID-PLURAL) depending 
on N.
 MSGID is the singular form of the string to be converted;
 use it as the key for the search in the translation catalog.
-MSGID_PLURAL is the plural form.  Use N to select the proper translation.
+MSGID-PLURAL is the plural form.  Use N to select the proper translation.
 If no message catalog is found, MSGID is returned if N is equal to 1,
-otherwise MSGID_PLURAL.  */)
+otherwise MSGID-PLURAL.  */)
   (Lisp_Object msgid, Lisp_Object msgid_plural, Lisp_Object n)
 {
   CHECK_STRING (msgid);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]