comparison src/coding.c @ 85330:0bc184c59770

* 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.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 16 Oct 2007 16:28:39 +0000
parents 922a7e3b7383
children bb808ca35bd9
comparison
equal deleted inserted replaced
85329:ad9922c079e4 85330:0bc184c59770
5369 struct gcpro gcpro1; 5369 struct gcpro gcpro1;
5370 GCPRO1 (arg); 5370 GCPRO1 (arg);
5371 5371
5372 inhibit_pre_post_conversion = 0; 5372 inhibit_pre_post_conversion = 0;
5373 Vlast_coding_system_used = XCAR (arg); 5373 Vlast_coding_system_used = XCAR (arg);
5374 for (arg = XCDR (arg); ! NILP (arg); arg = XCDR (arg)) 5374 for (arg = XCDR (arg); CONSP (arg); arg = XCDR (arg))
5375 Fkill_buffer (XCAR (arg)); 5375 Fkill_buffer (XCAR (arg));
5376 5376
5377 UNGCPRO; 5377 UNGCPRO;
5378 return Qnil; 5378 return Qnil;
5379 } 5379 }