diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-02-15 06:33:15 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-02-15 06:33:15 +0000 |
commit | 6126ebe85a47ace52700b454aadb31f05d727673 (patch) | |
tree | cb985fd293a4b1d6e43858cd7d2bcb16a68002d3 /src/data.c | |
parent | 9eec26caed0a017bedce972752b288ef4a513a6e (diff) | |
download | emacs-6126ebe85a47ace52700b454aadb31f05d727673.tar.gz |
(Fsetq_default): Allow no arg case.
Diffstat (limited to 'src/data.c')
-rw-r--r-- | src/data.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c index be1e4d33bbb..25691a4678b 100644 --- a/src/data.c +++ b/src/data.c @@ -1458,7 +1458,7 @@ for this variable. */) 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 @@ More generally, you can use multiple variables and values, as in 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; { |