diff options
| author | Richard M. Stallman | 2007-07-15 18:57:10 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-07-15 18:57:10 +0000 |
| commit | 70e9f39931c1bc15846b9d0994ba4a69fc6f4a65 (patch) | |
| tree | 92ae93143976c4c76e3c54ad070f18c82dc1536c /src/data.c | |
| parent | be3eb6a6229303ee2d95ffe3942f07a46fb925a3 (diff) | |
| download | emacs-70e9f39931c1bc15846b9d0994ba4a69fc6f4a65.tar.gz emacs-70e9f39931c1bc15846b9d0994ba4a69fc6f4a65.zip | |
(Fsetq_default): Doc fix.
Diffstat (limited to 'src/data.c')
| -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) |