aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Janík2001-11-02 07:01:47 +0000
committerPavel Janík2001-11-02 07:01:47 +0000
commitf9d1e467d22c63f8561d24894c12f41dc1cf4e2c (patch)
tree049378f1b771c84fb480a61eae7ae8bff40cab48
parent3ecdf100959536e83e3f66c1430829e428a1a817 (diff)
downloademacs-f9d1e467d22c63f8561d24894c12f41dc1cf4e2c.tar.gz
emacs-f9d1e467d22c63f8561d24894c12f41dc1cf4e2c.zip
(Fsetq_default): Add usage to doc-string.
-rw-r--r--src/data.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c
index 247085afdce..cf916141d35 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1402,7 +1402,8 @@ More generally, you can use multiple variables and values, as in
1402 (setq-default SYMBOL VALUE SYMBOL VALUE...) 1402 (setq-default SYMBOL VALUE SYMBOL VALUE...)
1403This sets each SYMBOL's default value to the corresponding VALUE. 1403This sets each SYMBOL's default value to the corresponding VALUE.
1404The VALUE for the Nth SYMBOL can refer to the new default values 1404The VALUE for the Nth SYMBOL can refer to the new default values
1405of previous SYMs. */) 1405of previous SYMs.
1406usage: (setq-default SYMBOL VALUE [SYMBOL VALUE...]) */)
1406 (args) 1407 (args)
1407 Lisp_Object args; 1408 Lisp_Object args;
1408{ 1409{