Mercurial > emacs
changeset 6919:dabe7a363f28
(Fsetq_default): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 16 Apr 1994 05:15:17 +0000 |
parents | c3af68680a33 |
children | 52ec40c3f037 |
files | src/data.c |
diffstat | 1 files changed, 11 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/data.c Sat Apr 16 05:07:35 1994 +0000 +++ b/src/data.c Sat Apr 16 05:15:17 1994 +0000 @@ -1041,10 +1041,17 @@ } DEFUN ("setq-default", Fsetq_default, Ssetq_default, 2, UNEVALLED, 0, - "\ -\(setq-default SYM VAL SYM VAL...): set each SYM's default value to its VAL.\n\ -VAL is evaluated; SYM is not. The default value is seen in buffers that do\n\ -not have their own values for this variable.") + "Set the default value of variable VAR to VALUE.\n\ +VAR, the variable name, is literal (not evaluated);\n\ +VALUE is an expression and it is evaluated.\n\ +The default value of a variable is seen in buffers\n\ +that do not have their own values for the variable.\n\ +\n\ +More generally, you can use multiple variables and values, as in\n\ + (setq-default SYM VALUE SYM VALUE...)\n\ +This sets each SYM's default value to the corresponding VALUE.\n\ +The VALUE for the Nth SYM can refer to the new default values\n\ +of previous SYMs.") (args) Lisp_Object args; {