diff options
Diffstat (limited to 'src/lread.c')
| -rw-r--r-- | src/lread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c index 1bcad4672f0..a75e615acda 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -1299,7 +1299,7 @@ close_load_descs () | |||
| 1299 | { | 1299 | { |
| 1300 | #ifndef WINDOWSNT | 1300 | #ifndef WINDOWSNT |
| 1301 | Lisp_Object tail; | 1301 | Lisp_Object tail; |
| 1302 | for (tail = load_descriptor_list; !NILP (tail); tail = XCDR (tail)) | 1302 | for (tail = load_descriptor_list; CONSP (tail); tail = XCDR (tail)) |
| 1303 | emacs_close (XFASTINT (XCAR (tail))); | 1303 | emacs_close (XFASTINT (XCAR (tail))); |
| 1304 | #endif | 1304 | #endif |
| 1305 | } | 1305 | } |