aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorJuanma Barranquero2004-05-06 00:10:15 +0000
committerJuanma Barranquero2004-05-06 00:10:15 +0000
commit948d29955e019dfa516b07e3458582c827b0577d (patch)
tree110d9f147dd2083d8082521a6043db98f9f06edd /src/data.c
parentf747bef986b520e54dfd51e0e1ef0382ecee3fef (diff)
downloademacs-948d29955e019dfa516b07e3458582c827b0577d.tar.gz
emacs-948d29955e019dfa516b07e3458582c827b0577d.zip
(Fsetq_default): Fix docstring.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/data.c b/src/data.c
index c94723d09d0..6ce9a5d37aa 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1468,11 +1468,11 @@ The default value of a variable is seen in buffers
1468that do not have their own values for the variable. 1468that do not have their own values for the variable.
1469 1469
1470More generally, you can use multiple variables and values, as in 1470More generally, you can use multiple variables and values, as in
1471 (setq-default SYMBOL VALUE SYMBOL VALUE...) 1471 (setq-default VAR VALUE VAR VALUE...)
1472This sets each SYMBOL's default value to the corresponding VALUE. 1472This sets each VAR's default value to the corresponding VALUE.
1473The VALUE for the Nth SYMBOL can refer to the new default values 1473The VALUE for the Nth VAR can refer to the new default values
1474of previous SYMs. 1474of previous VARs.
1475usage: (setq-default SYMBOL VALUE [SYMBOL VALUE...]) */) 1475usage: (setq-default VAR VALUE [VAR VALUE...]) */)
1476 (args) 1476 (args)
1477 Lisp_Object args; 1477 Lisp_Object args;
1478{ 1478{