diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/data.c | 6 |
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 | |||
| 1440 | This sets each VAR's default value to the corresponding VALUE. | 1440 | This sets each VAR's default value to the corresponding VALUE. |
| 1441 | The VALUE for the Nth VAR can refer to the new default values | 1441 | The VALUE for the Nth VAR can refer to the new default values |
| 1442 | of previous VARs. | 1442 | of previous VARs. |
| 1443 | usage: (setq-default [VAR VALUE...]) */) | 1443 | usage: (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 | ||
| 2354 | Lisp_Object | 2356 | Lisp_Object |
| 2355 | long_to_cons (i) | 2357 | long_to_cons (i) |