diff options
| author | Juanma Barranquero | 2004-05-06 00:10:15 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2004-05-06 00:10:15 +0000 |
| commit | 948d29955e019dfa516b07e3458582c827b0577d (patch) | |
| tree | 110d9f147dd2083d8082521a6043db98f9f06edd /src/data.c | |
| parent | f747bef986b520e54dfd51e0e1ef0382ecee3fef (diff) | |
| download | emacs-948d29955e019dfa516b07e3458582c827b0577d.tar.gz emacs-948d29955e019dfa516b07e3458582c827b0577d.zip | |
(Fsetq_default): Fix docstring.
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 10 |
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 | |||
| 1468 | that do not have their own values for the variable. | 1468 | that do not have their own values for the variable. |
| 1469 | 1469 | ||
| 1470 | More generally, you can use multiple variables and values, as in | 1470 | More generally, you can use multiple variables and values, as in |
| 1471 | (setq-default SYMBOL VALUE SYMBOL VALUE...) | 1471 | (setq-default VAR VALUE VAR VALUE...) |
| 1472 | This sets each SYMBOL's default value to the corresponding VALUE. | 1472 | This sets each VAR's default value to the corresponding VALUE. |
| 1473 | The VALUE for the Nth SYMBOL can refer to the new default values | 1473 | The VALUE for the Nth VAR can refer to the new default values |
| 1474 | of previous SYMs. | 1474 | of previous VARs. |
| 1475 | usage: (setq-default SYMBOL VALUE [SYMBOL VALUE...]) */) | 1475 | usage: (setq-default VAR VALUE [VAR VALUE...]) */) |
| 1476 | (args) | 1476 | (args) |
| 1477 | Lisp_Object args; | 1477 | Lisp_Object args; |
| 1478 | { | 1478 | { |