aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorRichard M. Stallman2007-07-15 18:57:10 +0000
committerRichard M. Stallman2007-07-15 18:57:10 +0000
commit70e9f39931c1bc15846b9d0994ba4a69fc6f4a65 (patch)
tree92ae93143976c4c76e3c54ad070f18c82dc1536c /src/data.c
parentbe3eb6a6229303ee2d95ffe3942f07a46fb925a3 (diff)
downloademacs-70e9f39931c1bc15846b9d0994ba4a69fc6f4a65.tar.gz
emacs-70e9f39931c1bc15846b9d0994ba4a69fc6f4a65.zip
(Fsetq_default): Doc fix.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c
index 471df20cd48..0b3be2fc694 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1440,7 +1440,7 @@ More generally, you can use multiple variables and values, as in
1440This sets each VAR's default value to the corresponding VALUE. 1440This sets each VAR's default value to the corresponding VALUE.
1441The VALUE for the Nth VAR can refer to the new default values 1441The VALUE for the Nth VAR can refer to the new default values
1442of previous VARs. 1442of previous VARs.
1443usage: (setq-default [VAR VALUE...]) */) 1443usage: (setq-default [VAR VALUE]...) */)
1444 (args) 1444 (args)
1445 Lisp_Object args; 1445 Lisp_Object args;
1446{ 1446{
@@ -2349,7 +2349,9 @@ DEFUN ("zerop", Fzerop, Szerop, 1, 1, 0,
2349 return Qnil; 2349 return Qnil;
2350} 2350}
2351 2351
2352/* Convert between long values and pairs of Lisp integers. */ 2352/* Convert between long values and pairs of Lisp integers.
2353 Note that long_to_cons returns a single Lisp integer
2354 when the value fits in one. */
2353 2355
2354Lisp_Object 2356Lisp_Object
2355long_to_cons (i) 2357long_to_cons (i)