diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-10-16 16:28:39 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-10-16 16:28:39 +0000 |
commit | 9beb8baa1f1b59f8e76df62e95647c39acbac5e7 (patch) | |
tree | d01390c83402aff49ddf14e282a9edb9bc983ba3 /src/lread.c | |
parent | d3f41ff55563551d241407ef640c9984156f87b8 (diff) | |
download | emacs-9beb8baa1f1b59f8e76df62e95647c39acbac5e7.tar.gz |
* xfns.c (Fx_create_frame, Fx_display_list):
* window.c (window_fixed_size_p, enlarge_window, shrink_window_lowest_first):
* macterm.c (init_font_name_table):
* macfns.c (Fx_create_frame, Fx_display_list):
* lread.c (close_load_descs):
* keyboard.c (read_char_x_menu_prompt):
* fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
* coding.c (code_convert_region_unwind): Test the type of an object
rather than just !NILP before extracting data from it.
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 5418d82a968..77eb800b41a 100644 --- a/src/lread.c +++ b/src/lread.c @@ -1100,7 +1100,7 @@ close_load_descs () { #ifndef WINDOWSNT Lisp_Object tail; - for (tail = load_descriptor_list; !NILP (tail); tail = XCDR (tail)) + for (tail = load_descriptor_list; CONSP (tail); tail = XCDR (tail)) emacs_close (XFASTINT (XCAR (tail))); #endif } |