aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
authorMiles Bader2007-10-19 00:00:21 +0000
committerMiles Bader2007-10-19 00:00:21 +0000
commit9c8020a8df03dc67a56d7df15664dcf7ace54bf0 (patch)
tree09b0646addff3c39f9e96ba89c04bdcc038a87a7 /src/fns.c
parentdfc3268dfa133a2e0a677f1af7c1ee548eae065d (diff)
parentbd3164743080f3eb5fc316aca7cc5322ca58fe33 (diff)
downloademacs-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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fns.c b/src/fns.c
index 9f7e422d757..82f9501f7aa 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -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