diff options
| author | Juanma Barranquero | 2019-06-10 06:12:37 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2019-06-10 06:15:09 +0200 |
| commit | e214da2dacfec2d118fc60198abb8e87e4164c3a (patch) | |
| tree | e6d905134f43b60a4cb5cc155718434231f89a11 | |
| parent | 82052afb24d29303804443d160a96c99ce4fae1a (diff) | |
| download | emacs-e214da2dacfec2d118fc60198abb8e87e4164c3a.tar.gz emacs-e214da2dacfec2d118fc60198abb8e87e4164c3a.zip | |
* src/editfns.c (Fngettext): Fix typos in docstring.
| -rw-r--r-- | src/editfns.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/editfns.c b/src/editfns.c index 6fb43af4e9c..ee538e50e25 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -2840,12 +2840,12 @@ usage: (save-restriction &rest BODY) */) | |||
| 2840 | /* i18n (internationalization). */ | 2840 | /* i18n (internationalization). */ |
| 2841 | 2841 | ||
| 2842 | DEFUN ("ngettext", Fngettext, Sngettext, 3, 3, 0, | 2842 | DEFUN ("ngettext", Fngettext, Sngettext, 3, 3, 0, |
| 2843 | doc: /* Return the translation of MSGID (plural MSGID_PLURAL) depending on N. | 2843 | doc: /* Return the translation of MSGID (plural MSGID-PLURAL) depending on N. |
| 2844 | MSGID is the singular form of the string to be converted; | 2844 | MSGID is the singular form of the string to be converted; |
| 2845 | use it as the key for the search in the translation catalog. | 2845 | use it as the key for the search in the translation catalog. |
| 2846 | MSGID_PLURAL is the plural form. Use N to select the proper translation. | 2846 | MSGID-PLURAL is the plural form. Use N to select the proper translation. |
| 2847 | If no message catalog is found, MSGID is returned if N is equal to 1, | 2847 | If no message catalog is found, MSGID is returned if N is equal to 1, |
| 2848 | otherwise MSGID_PLURAL. */) | 2848 | otherwise MSGID-PLURAL. */) |
| 2849 | (Lisp_Object msgid, Lisp_Object msgid_plural, Lisp_Object n) | 2849 | (Lisp_Object msgid, Lisp_Object msgid_plural, Lisp_Object n) |
| 2850 | { | 2850 | { |
| 2851 | CHECK_STRING (msgid); | 2851 | CHECK_STRING (msgid); |