diff options
| author | Miles Bader | 2007-10-19 00:00:21 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-10-19 00:00:21 +0000 |
| commit | 9c8020a8df03dc67a56d7df15664dcf7ace54bf0 (patch) | |
| tree | 09b0646addff3c39f9e96ba89c04bdcc038a87a7 /src/fns.c | |
| parent | dfc3268dfa133a2e0a677f1af7c1ee548eae065d (diff) | |
| parent | bd3164743080f3eb5fc316aca7cc5322ca58fe33 (diff) | |
| download | emacs-9c8020a8df03dc67a56d7df15664dcf7ace54bf0.tar.gz emacs-9c8020a8df03dc67a56d7df15664dcf7ace54bf0.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 890-898)
- Update from CVS
- Merge from emacs--rel--22
* emacs--rel--22 (patch 122-128)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 257-258)
- Merge from emacs--rel--22
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-270
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -1370,7 +1370,7 @@ The value is actually the tail of LIST whose car is ELT. */) | |||
| 1370 | Lisp_Object list; | 1370 | Lisp_Object list; |
| 1371 | { | 1371 | { |
| 1372 | register Lisp_Object tail; | 1372 | register Lisp_Object tail; |
| 1373 | for (tail = list; !NILP (tail); tail = XCDR (tail)) | 1373 | for (tail = list; CONSP (tail); tail = XCDR (tail)) |
| 1374 | { | 1374 | { |
| 1375 | register Lisp_Object tem; | 1375 | register Lisp_Object tem; |
| 1376 | CHECK_LIST_CONS (tail, list); | 1376 | CHECK_LIST_CONS (tail, list); |
| @@ -1421,7 +1421,7 @@ The value is actually the tail of LIST whose car is ELT. */) | |||
| 1421 | if (!FLOATP (elt)) | 1421 | if (!FLOATP (elt)) |
| 1422 | return Fmemq (elt, list); | 1422 | return Fmemq (elt, list); |
| 1423 | 1423 | ||
| 1424 | for (tail = list; !NILP (tail); tail = XCDR (tail)) | 1424 | for (tail = list; CONSP (tail); tail = XCDR (tail)) |
| 1425 | { | 1425 | { |
| 1426 | register Lisp_Object tem; | 1426 | register Lisp_Object tem; |
| 1427 | CHECK_LIST_CONS (tail, list); | 1427 | CHECK_LIST_CONS (tail, list); |
| @@ -1741,7 +1741,7 @@ to be sure of changing the value of `foo'. */) | |||
| 1741 | { | 1741 | { |
| 1742 | Lisp_Object tail, prev; | 1742 | Lisp_Object tail, prev; |
| 1743 | 1743 | ||
| 1744 | for (tail = seq, prev = Qnil; !NILP (tail); tail = XCDR (tail)) | 1744 | for (tail = seq, prev = Qnil; CONSP (tail); tail = XCDR (tail)) |
| 1745 | { | 1745 | { |
| 1746 | CHECK_LIST_CONS (tail, seq); | 1746 | CHECK_LIST_CONS (tail, seq); |
| 1747 | 1747 | ||