aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-16 05:15:17 +0000
committerRichard M. Stallman1994-04-16 05:15:17 +0000
commit0412bf67d1c991580e5a601edce8d38e602a76c3 (patch)
tree7baa21324110143d244f205c7290640ca755034c /src/data.c
parentb0d75191381b48db07fde7d6b0aec4924e3477f1 (diff)
downloademacs-0412bf67d1c991580e5a601edce8d38e602a76c3.tar.gz
emacs-0412bf67d1c991580e5a601edce8d38e602a76c3.zip
(Fsetq_default): Doc fix.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/data.c b/src/data.c
index bfcfb0536a8..b9909c7677f 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1041,10 +1041,17 @@ for this variable.")
1041} 1041}
1042 1042
1043DEFUN ("setq-default", Fsetq_default, Ssetq_default, 2, UNEVALLED, 0, 1043DEFUN ("setq-default", Fsetq_default, Ssetq_default, 2, UNEVALLED, 0,
1044 "\ 1044 "Set the default value of variable VAR to VALUE.\n\
1045\(setq-default SYM VAL SYM VAL...): set each SYM's default value to its VAL.\n\ 1045VAR, the variable name, is literal (not evaluated);\n\
1046VAL is evaluated; SYM is not. The default value is seen in buffers that do\n\ 1046VALUE is an expression and it is evaluated.\n\
1047not have their own values for this variable.") 1047The default value of a variable is seen in buffers\n\
1048that do not have their own values for the variable.\n\
1049\n\
1050More generally, you can use multiple variables and values, as in\n\
1051 (setq-default SYM VALUE SYM VALUE...)\n\
1052This sets each SYM's default value to the corresponding VALUE.\n\
1053The VALUE for the Nth SYM can refer to the new default values\n\
1054of previous SYMs.")
1048 (args) 1055 (args)
1049 Lisp_Object args; 1056 Lisp_Object args;
1050{ 1057{