diff options
| author | Kim F. Storm | 2006-07-12 13:19:33 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-07-12 13:19:33 +0000 |
| commit | 979376ccccf4a90d6106d960c1eedf3138ddd80b (patch) | |
| tree | 7b5e531f95a7c8261e4fc12ac2419764d582126d /src | |
| parent | 8878319cf18327c40fcbe06899ff500991cf0b92 (diff) | |
| download | emacs-979376ccccf4a90d6106d960c1eedf3138ddd80b.tar.gz emacs-979376ccccf4a90d6106d960c1eedf3138ddd80b.zip | |
(Fmac_get_preference): Use CHECK_LIST_END.
Diffstat (limited to 'src')
| -rw-r--r-- | src/mac.c | 3 |
1 files changed, 1 insertions, 2 deletions
| @@ -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); |