aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2003-02-14 18:56:16 +0000
committerDave Love2003-02-14 18:56:16 +0000
commit98aeeaa170f392e649fd987535b2296ea0b72b8a (patch)
tree9d3ae58370597a053dedfe63b67ccfb80e06fe8e /src
parent8daf0fe537a2f1bd0bc739a10fa9cdb6e6d1d515 (diff)
downloademacs-98aeeaa170f392e649fd987535b2296ea0b72b8a.tar.gz
emacs-98aeeaa170f392e649fd987535b2296ea0b72b8a.zip
(Flanginfo): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/fns.c b/src/fns.c
index 871c6dcb618..69c7418845e 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -3448,16 +3448,21 @@ usage: (widget-apply WIDGET PROPERTY &rest ARGS) */)
3448#endif 3448#endif
3449 3449
3450DEFUN ("langinfo", Flanginfo, Slanginfo, 1, 1, 0, 3450DEFUN ("langinfo", Flanginfo, Slanginfo, 1, 1, 0,
3451 doc: /* Access locale category ITEM, if available. 3451 doc: /* Access locale data ITEM, if available.
3452 3452
3453ITEM may be one of the following: 3453ITEM may be one of the following:
3454`codeset', returning the character set as a string (CODESET); 3454`codeset', returning the character set as a string (locale item CODESET);
3455`days', returning a 7-element vector of day names (DAY_n); 3455`days', returning a 7-element vector of day names (locale items DAY_n);
3456`months', returning a 12-element vector of month names (MON_n). 3456`months', returning a 12-element vector of month names (locale items MON_n);
3457`paper', returning a list (WIDTH, HEIGHT) for the default paper size,
3458 where the width and height are in mm (locale items PAPER_WIDTH,
3459 PAPER_HEIGHT).
3457 3460
3458If the system can't provide such information through a call to 3461If the system can't provide such information through a call to
3459nl_langinfo(3), return nil. 3462nl_langinfo(3), return nil.
3460 3463
3464See also Info node `(libc)Locales'.
3465
3461The data read from the system are decoded using `locale-coding-system'. */) 3466The data read from the system are decoded using `locale-coding-system'. */)
3462 (item) 3467 (item)
3463 Lisp_Object item; 3468 Lisp_Object item;