aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2003-06-02 18:31:29 +0000
committerDave Love2003-06-02 18:31:29 +0000
commit30b1b0cf418e92752345421355737fa335149713 (patch)
treeadbb52de7d43ddecbe6f39f6bda3e5d108d43829 /src
parentccb78fa385044cdb3ac9d296b7abca0c72a55d0a (diff)
downloademacs-30b1b0cf418e92752345421355737fa335149713.tar.gz
emacs-30b1b0cf418e92752345421355737fa335149713.zip
Doc fixes.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/src/fns.c b/src/fns.c
index ff0f7cb481c..128b332886a 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2510,9 +2510,9 @@ a coding system, or a character code. */)
2510 2510
2511DEFUN ("set-char-table-default", Fset_char_table_default, 2511DEFUN ("set-char-table-default", Fset_char_table_default,
2512 Sset_char_table_default, 3, 3, 0, 2512 Sset_char_table_default, 3, 3, 0,
2513 doc: /* Set the default value in CHAR-TABLE for a generic character CHAR to VALUE. 2513 doc: /* Set the default value in CHAR-TABLE for generic character CH to VALUE.
2514The generic character specifies the group of characters. 2514The generic character specifies the group of characters.
2515See also the documentation of make-char. */) 2515See also the documentation of `make-char'. */)
2516 (char_table, ch, value) 2516 (char_table, ch, value)
2517 Lisp_Object char_table, ch, value; 2517 Lisp_Object char_table, ch, value;
2518{ 2518{
@@ -3221,7 +3221,12 @@ When USE-FLOATS is non-nil, floats will be used instead of integers.
3221These floats are not multiplied by 100. 3221These floats are not multiplied by 100.
3222 3222
3223If the 5-minute or 15-minute load averages are not available, return a 3223If the 5-minute or 15-minute load averages are not available, return a
3224shortened list, containing only those averages which are available. */) 3224shortened list, containing only those averages which are available.
3225
3226An error is thrown if the load average can't be obtained. In some
3227cases making it work would require Emacs being installed setuid or
3228setgid so that it can read kernel information, and that usually isn't
3229advisable. */)
3225 (use_floats) 3230 (use_floats)
3226 Lisp_Object use_floats; 3231 Lisp_Object use_floats;
3227{ 3232{
@@ -3478,15 +3483,19 @@ DEFUN ("langinfo", Flanginfo, Slanginfo, 1, 1, 0,
3478 doc: /* Access locale data ITEM, if available. 3483 doc: /* Access locale data ITEM, if available.
3479 3484
3480ITEM may be one of the following: 3485ITEM may be one of the following:
3486
3481`codeset', returning the character set as a string (locale item CODESET); 3487`codeset', returning the character set as a string (locale item CODESET);
3488
3482`days', returning a 7-element vector of day names (locale items DAY_n); 3489`days', returning a 7-element vector of day names (locale items DAY_n);
3490
3483`months', returning a 12-element vector of month names (locale items MON_n); 3491`months', returning a 12-element vector of month names (locale items MON_n);
3492
3484`paper', returning a list (WIDTH, HEIGHT) for the default paper size, 3493`paper', returning a list (WIDTH, HEIGHT) for the default paper size,
3485 where the width and height are in mm (locale items PAPER_WIDTH, 3494 where the width and height are in mm (locale items PAPER_WIDTH,
3486 PAPER_HEIGHT). 3495 PAPER_HEIGHT).
3487 3496
3488If the system can't provide such information through a call to 3497If the system can't provide such information through a call to
3489nl_langinfo(3), return nil. 3498nl_langinfo(3) or if ITEM isn't from the list above, return nil.
3490 3499
3491See also Info node `(libc)Locales'. 3500See also Info node `(libc)Locales'.
3492 3501
@@ -3551,7 +3560,7 @@ The data read from the system are decoded using `locale-coding-system'. */)
3551 } 3560 }
3552#endif /* PAPER_WIDTH */ 3561#endif /* PAPER_WIDTH */
3553#endif /* HAVE_LANGINFO_CODESET*/ 3562#endif /* HAVE_LANGINFO_CODESET*/
3554 return Qnil; 3563 return Qnil;
3555} 3564}
3556 3565
3557/* base64 encode/decode functions (RFC 2045). 3566/* base64 encode/decode functions (RFC 2045).