diff options
| author | Miles Bader | 2007-07-24 01:23:55 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-07-24 01:23:55 +0000 |
| commit | d918f936d5bfc7e126cc3b1bbf6ce80836c8d6f1 (patch) | |
| tree | c2dad763df03a5380928485043f9999c7a3533a6 /src/data.c | |
| parent | a1ef75fc233b19951f65bd2a177751751f9676a3 (diff) | |
| parent | 1e8995158740b15936887264a3d7183beb5c51d9 (diff) | |
| download | emacs-d918f936d5bfc7e126cc3b1bbf6ce80836c8d6f1.tar.gz emacs-d918f936d5bfc7e126cc3b1bbf6ce80836c8d6f1.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 816-823)
- Update from CVS
- Merge from emacs--rel--22
* emacs--rel--22 (patch 59-69)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 237-238)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-235
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 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 | |||
| 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 | { |
| @@ -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 | ||
| 2200 | Lisp_Object | 2202 | Lisp_Object |
| 2201 | long_to_cons (i) | 2203 | long_to_cons (i) |