aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
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 dd5bc0bcb21..99c38db1395 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{
@@ -2195,7 +2195,9 @@ DEFUN ("zerop", Fzerop, Szerop, 1, 1, 0,
2195 return Qnil; 2195 return Qnil;
2196} 2196}
2197 2197
2198/* Convert between long values and pairs of Lisp integers. */ 2198/* Convert between long values and pairs of Lisp integers.
2199 Note that long_to_cons returns a single Lisp integer
2200 when the value fits in one. */
2199 2201
2200Lisp_Object 2202Lisp_Object
2201long_to_cons (i) 2203long_to_cons (i)