aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2006-07-12 13:19:33 +0000
committerKim F. Storm2006-07-12 13:19:33 +0000
commit979376ccccf4a90d6106d960c1eedf3138ddd80b (patch)
tree7b5e531f95a7c8261e4fc12ac2419764d582126d /src
parent8878319cf18327c40fcbe06899ff500991cf0b92 (diff)
downloademacs-979376ccccf4a90d6106d960c1eedf3138ddd80b.tar.gz
emacs-979376ccccf4a90d6106d960c1eedf3138ddd80b.zip
(Fmac_get_preference): Use CHECK_LIST_END.
Diffstat (limited to 'src')
-rw-r--r--src/mac.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mac.c b/src/mac.c
index e25ed435342..4652757fab3 100644
--- a/src/mac.c
+++ b/src/mac.c
@@ -4625,8 +4625,7 @@ otherwise. */)
4625 CHECK_CONS (key); 4625 CHECK_CONS (key);
4626 for (tmp = key; CONSP (tmp); tmp = XCDR (tmp)) 4626 for (tmp = key; CONSP (tmp); tmp = XCDR (tmp))
4627 CHECK_STRING_CAR (tmp); 4627 CHECK_STRING_CAR (tmp);
4628 if (!NILP (tmp)) 4628 CHECK_LIST_END (tmp, key);
4629 wrong_type_argument (Qlistp, key);
4630 } 4629 }
4631 if (!NILP (application)) 4630 if (!NILP (application))
4632 CHECK_STRING (application); 4631 CHECK_STRING (application);