Mercurial > emacs
changeset 60064:896e880eab56
(Fsetq_default): Allow no arg case.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 15 Feb 2005 06:33:15 +0000 |
parents | 5df201ceaa7b |
children | 42e18861b7b8 |
files | src/data.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/data.c Mon Feb 14 23:44:07 2005 +0000 +++ b/src/data.c Tue Feb 15 06:33:15 2005 +0000 @@ -1458,7 +1458,7 @@ return value; } -DEFUN ("setq-default", Fsetq_default, Ssetq_default, 2, UNEVALLED, 0, +DEFUN ("setq-default", Fsetq_default, Ssetq_default, 0, UNEVALLED, 0, doc: /* Set the default value of variable VAR to VALUE. VAR, the variable name, is literal (not evaluated); VALUE is an expression: it is evaluated and its value returned. @@ -1470,7 +1470,7 @@ This sets each VAR's default value to the corresponding VALUE. The VALUE for the Nth VAR can refer to the new default values of previous VARs. -usage: (setq-default VAR VALUE [VAR VALUE...]) */) +usage: (setq-default [VAR VALUE...]) */) (args) Lisp_Object args; {