Mercurial > hg > xemacs-beta
diff src/ChangeLog @ 578:190b164ddcac
[xemacs-hg @ 2001-05-25 11:26:50 by ben]
device-msw.c, eldap.c, emodules.c, hpplay.c, process-unix.c, sound.h, tooltalk.c, win32.c: Revert Martin's attempted compile-warnings fix. It does fix
the warnings, but not the right way. We are trying to eliminate
the raw use of `char' and `unsigned char' absolutely everywhere.
There is never an occasion to reintroduce these.
buffer.h: Instead, we fix these macros so they don't care about the type of
their lvalues. We already do this for the non-C-string
equivalents of these, and it's correct because it should be OK to
pass in an SBufbyte *, for example. In any case, we do not need
any type-correctness checking here -- errors will be caught for
sure as soon as we remove the -Wno-sign-compare switch.
mule-charset.c: Use invalid_argument, not generic signal_error (Qerror, ).
alloc.c, chartab.c, console-gtk.c, console-msw.c, console-stream.c, console-stream.h, console-tty.c, console-tty.h, console-x.c, console.c, console.h, device-x.c, device.c, elhash.c, eval.c, faces.c, faces.h, fns.c, glyphs.c, glyphs.h, gui.c, gui.h, lisp.h, lread.c, nt.c, objects-gtk.c, objects-gtk.h, objects-msw.c, objects-tty.c, objects-x.c, objects.c, process-unix.c, rangetab.c, search.c, specifier.c, toolbar.c, window.c, window.h:
Rename Error_behavior to Error_Behavior, to be consistent with
general naming practices (Lisp_Object, Char_Binary, etc.).
author | ben |
---|---|
date | Fri, 25 May 2001 11:27:01 +0000 |
parents | 910449c92002 |
children | 0e1f61d4b978 |
line wrap: on
line diff
--- a/src/ChangeLog Fri May 25 10:04:29 2001 +0000 +++ b/src/ChangeLog Fri May 25 11:27:01 2001 +0000 @@ -1,3 +1,166 @@ +2001-05-25 Ben Wing <ben@xemacs.org> + + * device-msw.c (msprinter_default_printer): + * eldap.c (Fldap_open): + * emodules.c (emodules_load): + * hpplay.c (player_error_internal): + * process-unix.c (unix_canonicalize_host_name): + * process-unix.c (unix_open_network_stream): + * sound.h (sound_perror): + * sound.h (sound_warn): + * tooltalk.c (check_status): + * win32.c (tstr_to_local_file_format): + Revert Martin's attempted compile-warnings fix. It does fix + the warnings, but not the right way. We are trying to eliminate + the raw use of `char' and `unsigned char' absolutely everywhere. + There is never an occasion to reintroduce these. + + * buffer.h (DFC_C_STRING_ALLOCA_USE_CONVERTED_DATA): + * buffer.h (DFC_C_STRING_MALLOC_USE_CONVERTED_DATA): + Instead, we fix these macros so they don't care about the type of + their lvalues. We already do this for the non-C-string + equivalents of these, and it's correct because it should be OK to + pass in an SBufbyte *, for example. In any case, we do not need + any type-correctness checking here -- errors will be caught for + sure as soon as we remove the -Wno-sign-compare switch. + + * mule-charset.c (Fmake_charset): + Use invalid_argument, not generic signal_error (Qerror, ). + + * alloc.c: + * chartab.c (check_valid_char_table_value): + * chartab.c (chartab_type_validate): + * chartab.c (chartab_data_validate): + * console-gtk.c (gtk_device_to_console_connection): + * console-gtk.c (gtk_semi_canonicalize_console_connection): + * console-gtk.c (gtk_canonicalize_console_connection): + * console-gtk.c (gtk_semi_canonicalize_device_connection): + * console-gtk.c (gtk_canonicalize_device_connection): + * console-msw.c (mswindows_canonicalize_console_connection): + * console-msw.c (mswindows_canonicalize_device_connection): + * console-msw.c (msprinter_canonicalize_console_connection): + * console-msw.c (msprinter_canonicalize_device_connection): + * console-stream.c (stream_semi_canonicalize_console_connection): + * console-stream.c (stream_canonicalize_console_connection): + * console-stream.c (stream_semi_canonicalize_device_connection): + * console-stream.c (stream_canonicalize_device_connection): + * console-stream.h: + * console-tty.c (tty_semi_canonicalize_console_connection): + * console-tty.c (tty_canonicalize_console_connection): + * console-tty.c (tty_semi_canonicalize_device_connection): + * console-tty.c (tty_canonicalize_device_connection): + * console-tty.h: + * console-x.c (x_device_to_console_connection): + * console-x.c (x_semi_canonicalize_console_connection): + * console-x.c (x_canonicalize_console_connection): + * console-x.c (x_semi_canonicalize_device_connection): + * console-x.c (x_canonicalize_device_connection): + * console.c (decode_console_type): + * console.c (semi_canonicalize_console_connection): + * console.c (canonicalize_console_connection): + * console.h: + * console.h (struct console_methods): + * device-x.c (Fx_get_resource): + * device.c (semi_canonicalize_device_connection): + * device.c (canonicalize_device_connection): + * elhash.c (hash_table_size_validate): + * elhash.c (hash_table_weakness_validate): + * elhash.c (hash_table_test_validate): + * elhash.c (hash_table_rehash_size_validate): + * elhash.c (hash_table_rehash_threshold_validate): + * elhash.c (hash_table_data_validate): + * eval.c: + * eval.c (call_with_suspended_errors): + * eval.c (maybe_signal_error_1): + * eval.c (maybe_signal_continuable_error_1): + * eval.c (maybe_signal_error): + * eval.c (maybe_signal_continuable_error): + * eval.c (maybe_signal_error_2): + * eval.c (maybe_signal_continuable_error_2): + * eval.c (maybe_signal_ferror): + * eval.c (maybe_signal_continuable_ferror): + * eval.c (maybe_signal_ferror_with_frob): + * eval.c (maybe_signal_continuable_ferror_with_frob): + * eval.c (maybe_syntax_error): + * eval.c (maybe_sferror): + * eval.c (maybe_invalid_argument): + * eval.c (maybe_invalid_constant): + * eval.c (maybe_invalid_operation): + * eval.c (maybe_invalid_change): + * eval.c (maybe_invalid_state): + * faces.c (face_name_validate): + * faces.c (face_validate): + * faces.c (face_property_matching_instance): + * faces.h: + * fns.c (bad_bad_bunny): + * fns.c (bad_bad_turtle): + * fns.c (advance_plist_pointers): + * fns.c (external_plist_get): + * fns.c (external_plist_put): + * fns.c (external_remprop): + * glyphs.c (decode_device_ii_format): + * glyphs.c (decode_image_instantiator_format): + * glyphs.c (decode_image_instance_type): + * glyphs.c (decode_error_behavior_flag): + * glyphs.c (encode_error_behavior_flag): + * glyphs.c (Fmake_image_instance): + * glyphs.c (decode_glyph_type): + * glyphs.c (glyph_image_instance): + * glyphs.h: + * gui.c (gui_item_add_keyval_pair): + * gui.c (make_gui_item_from_keywords_internal): + * gui.h: + * lisp.h: + * lisp.h (error_behavior): + * lisp.h (_error_behavior_struct_): + * lisp.h (struct structure_keyword_entry): + * lisp.h (struct structure_type): + * lread.c (define_structure_type): + * lread.c (define_structure_type_keyword): + * nt.c (tty_semi_canonicalize_console_connection): + * nt.c (tty_canonicalize_console_connection): + * nt.c (tty_semi_canonicalize_device_connection): + * nt.c (tty_canonicalize_device_connection): + * objects-gtk.c (gtk_parse_nearest_color): + * objects-gtk.c (gtk_initialize_color_instance): + * objects-gtk.c (gtk_initialize_font_instance): + * objects-gtk.c (gtk_font_instance_truename): + * objects-gtk.h: + * objects-msw.c (mswindows_initialize_color_instance): + * objects-msw.c (initialize_font_instance): + * objects-msw.c (mswindows_initialize_font_instance): + * objects-msw.c (msprinter_initialize_font_instance): + * objects-msw.c (mswindows_font_instance_truename): + * objects-tty.c (tty_initialize_color_instance): + * objects-tty.c (tty_initialize_font_instance): + * objects-x.c (x_parse_nearest_color): + * objects-x.c (x_initialize_color_instance): + * objects-x.c (x_initialize_font_instance): + * objects-x.c (x_font_instance_truename): + * objects.c: + * objects.c (Fmake_font_instance): + * objects.c (font_instance_truename_internal): + * process-unix.c (get_internet_address): + * rangetab.c (rangetab_data_validate): + * search.c (compile_pattern_1): + * search.c (compile_pattern): + * search.c (fast_string_match): + * specifier.c (decode_specifier_type): + * specifier.c (check_valid_instantiator): + * specifier.c (check_valid_inst_list): + * specifier.c (check_valid_spec_list): + * specifier.c (check_valid_specifier_matchspec): + * specifier.c (specifier_instance_from_inst_list): + * specifier.c (specifier_instance): + * specifier.c (specifier_instance_no_quit): + * toolbar.c (check_toolbar_button_keywords): + * toolbar.c (Fcheck_toolbar_button_syntax): + * window.c (window_scroll): + * window.h: + + Rename Error_behavior to Error_Behavior, to be consistent with + general naming practices (Lisp_Object, Char_Binary, etc.). + 2001-05-24 Hrvoje Niksic <hniksic@arsdigita.com> * doprnt.c (emacs_doprnt_1): long_to_string doesn't return a @@ -71,885 +234,6 @@ Also remove audio: from error message. sound_warn and sound_perror prepends them. -2001-05-24 Ben Wing <ben@xemacs.org> - - * Makefile.in.in (objs): - * abbrev.c (syms_of_abbrev): - * alloc.c (memory_full): - * alloc.c (Fmake_byte_code): - * alloc.c (garbage_collect_1): - * buffer.c: - * buffer.c (print_buffer): - * buffer.c (nsberror): - * buffer.c (Fget_buffer_create): - * buffer.c (Fset_buffer): - * buffer.c (Fbury_buffer): - * buffer.c (syms_of_buffer): - * bytecode.c: - * bytecode.c (execute_optimized_program): - * bytecode.c (invalid_byte_code): - * bytecode.c (check_opcode): - * bytecode.c (check_constants_index): - * bytecode.c (READ_INSTRUCTION_CHAR): - * bytecode.c (optimize_byte_code): - * bytecode.c (Ffetch_bytecode): - * bytecode.c (syms_of_bytecode): - * callint.c (check_mark): - * callint.c (Fcall_interactively): - * callint.c (syms_of_callint): - * callproc.c: - * callproc.c (Fold_call_process_internal): - * callproc.c (child_setup): - * casetab.c (print_case_table): - * casetab.c (Fget_case_table): - * casetab.c (Fput_case_table): - * casetab.c (syms_of_casetab): - * chartab.c (symbol_to_char_table_type): - * chartab.c (decode_char_table_range): - * chartab.c (check_valid_char_table_value): - * chartab.c (chartab_data_validate): - * chartab.c (check_category_char): - * chartab.c (syms_of_chartab): - * cmdloop.c (command_loop_3): - * cmdloop.c (syms_of_cmdloop): - * cmds.c (Fdelete_char): - * cmds.c (Fself_insert_command): - * cmds.c (syms_of_cmds): - * console-msw.c: - * console-msw.c (mswindows_canonicalize_console_connection): - * console-msw.c (Fmswindows_message_box): - * console-msw.c (mswindows_lisp_error): - * console-msw.c (msprinter_canonicalize_console_connection): - * console-msw.c (syms_of_console_mswindows): - * console-msw.h: - * console-stream.c (stream_init_console): - * console-stream.c (stream_init_frame_1): - * console-tty.c (tty_init_console): - * console-tty.c (syms_of_console_tty): - * console-x.c (get_display_arg_connection): - * console.c (print_console): - * console.c (decode_console_type): - * console.c (Fselect_console): - * console.c (Fget_console): - * console.c (delete_console_internal): - * console.c (syms_of_console): - * data.c: - * data.c (dead_wrong_type_argument): - * data.c (c_write_error): - * data.c (lisp_write_error): - * data.c (args_out_of_range): - * data.c (args_out_of_range_3): - * data.c (print_weak_list): - * data.c (decode_weak_list_type): - * data.c (arith_error): - * data.c (init_errors_once_early): - * data.c (syms_of_data): - * database.c (CHECK_LIVE_DATABASE): - * database.c (print_database): - * database.c (finalize_database): - * database.c (Fopen_database): - * database.c (syms_of_database): - * debug.c (Fadd_debug_class_to_check): - * debug.c (Fdelete_debug_class_to_check): - * debug.c (Fset_debug_classes_to_check): - * debug.c (Fset_debug_class_types_to_check): - * debug.c (Fdebug_types_being_checked): - * debug.c (syms_of_debug): - * device-gtk.c (gtk_init_device): - * device-gtk.c (Fgtk_display_visual_class): - * device-gtk.c (Fgtk_keysym_on_keyboard_p): - * device-gtk.c (syms_of_device_gtk): - * device-msw.c (handle_devmode_changes): - * device-msw.c (mswindows_handle_print_dialog_box): - * device-msw.c (mswindows_handle_page_setup_dialog_box): - * device-msw.c (Fmsprinter_select_settings): - * device-msw.c (Fmsprinter_apply_settings): - * device-msw.c (print_devmode): - * device-tty.c (tty_init_device): - * device-tty.c (syms_of_device_tty): - * device-x.c (sanity_check_geometry_resource): - * device-x.c (x_init_device): - * device-x.c (x_get_resource_prefix): - * device-x.c (Fx_get_resource): - * device-x.c (Fx_put_resource): - * device-x.c (Fx_display_visual_class): - * device-x.c (Fx_keysym_hash_table): - * device-x.c (Fx_keysym_on_keyboard_p): - * device-x.c (Fx_get_font_path): - * device-x.c (syms_of_device_x): - * device.c (print_device): - * device.c (Fselect_device): - * device.c (Fset_device_selected_frame): - * device.c (Fget_device): - * device.c (Fmake_device): - * device.c (Fset_device_class): - * device.c (Fdevice_system_metric): - * device.c (Fdomain_device_type): - * device.c (syms_of_device): - * dialog-gtk.c (syms_of_dialog_gtk): - * dialog-msw.c (handle_file_dialog_box): - * dialog-msw.c (handle_question_dialog_box): - * dialog-msw.c (mswindows_make_dialog_box_internal): - * dialog-msw.c (syms_of_dialog_mswindows): - * dialog-x.c (dbox_descriptor_to_widget_value): - * dialog-x.c (x_make_dialog_box_internal): - * dialog.c (Fmake_dialog_box_internal): - * dired-msw.c (mswindows_get_files): - * dired-msw.c (syms_of_dired_mswindows): - * dired.c (Fdirectory_files): - * dired.c (file_name_completion): - * dired.c (syms_of_dired): - * doc.c (get_doc_string): - * doc.c (read_doc_string): - * doc.c (Fsnarf_documentation): - * doprnt.c (parse_off_posnum): - * doprnt.c (NEXT_ASCII_BYTE): - * doprnt.c (parse_doprnt_spec): - * doprnt.c (get_doprnt_args): - * doprnt.c (emacs_doprnt_1): - * dragdrop.c (syms_of_dragdrop): - * editfns.c (Fchar_to_string): - * editfns.c (region_limit): - * editfns.c (Fformat_time_string): - * editfns.c (Fdecode_time): - * editfns.c (Fencode_time): - * editfns.c (Ftranspose_regions): - * editfns.c (syms_of_editfns): - * eldap.c (signal_ldap_error): - * eldap.c (print_ldap): - * eldap.c (finalize_ldap): - * eldap.c (Fldap_open): - * eldap.c (Fldap_search_basic): - * eldap.c (Fldap_add): - * eldap.c (Fldap_modify): - * eldap.c (syms_of_eldap): - * eldap.h (CHECK_LIVE_LDAP): - * elhash.c (hash_table_size_validate): - * elhash.c (hash_table_weakness_validate): - * elhash.c (decode_hash_table_weakness): - * elhash.c (hash_table_test_validate): - * elhash.c (decode_hash_table_test): - * elhash.c (hash_table_rehash_size_validate): - * elhash.c (hash_table_rehash_threshold_validate): - * elhash.c (hash_table_data_validate): - * elhash.c (Fmake_hash_table): - * elhash.c (syms_of_elhash): - * emacs-widget-accessors.c (Fgtk_adjustment_lower): - * emacs-widget-accessors.c (Fgtk_adjustment_upper): - * emacs-widget-accessors.c (Fgtk_adjustment_value): - * emacs-widget-accessors.c (Fgtk_adjustment_step_increment): - * emacs-widget-accessors.c (Fgtk_adjustment_page_increment): - * emacs-widget-accessors.c (Fgtk_adjustment_page_size): - * emacs-widget-accessors.c (Fgtk_widget_style): - * emacs-widget-accessors.c (Fgtk_widget_window): - * emacs-widget-accessors.c (Fgtk_widget_state): - * emacs-widget-accessors.c (Fgtk_widget_name): - * emacs-widget-accessors.c (Fgtk_widget_parent): - * emacs-widget-accessors.c (Fgtk_button_child): - * emacs-widget-accessors.c (Fgtk_button_in_button): - * emacs-widget-accessors.c (Fgtk_button_button_down): - * emacs-widget-accessors.c (Fgtk_combo_entry): - * emacs-widget-accessors.c (Fgtk_combo_button): - * emacs-widget-accessors.c (Fgtk_combo_popup): - * emacs-widget-accessors.c (Fgtk_combo_popwin): - * emacs-widget-accessors.c (Fgtk_combo_list): - * emacs-widget-accessors.c (Fgtk_gamma_curve_table): - * emacs-widget-accessors.c (Fgtk_gamma_curve_curve): - * emacs-widget-accessors.c (Fgtk_gamma_curve_gamma): - * emacs-widget-accessors.c (Fgtk_gamma_curve_gamma_dialog): - * emacs-widget-accessors.c (Fgtk_gamma_curve_gamma_text): - * emacs-widget-accessors.c (Fgtk_check_menu_item_active): - * emacs-widget-accessors.c (Fgtk_notebook_tab_pos): - * emacs-widget-accessors.c (Fgtk_text_hadj): - * emacs-widget-accessors.c (Fgtk_text_vadj): - * emacs-widget-accessors.c (Fgtk_file_selection_dir_list): - * emacs-widget-accessors.c (Fgtk_file_selection_file_list): - * emacs-widget-accessors.c (Fgtk_file_selection_selection_entry): - * emacs-widget-accessors.c (Fgtk_file_selection_selection_text): - * emacs-widget-accessors.c (Fgtk_file_selection_main_vbox): - * emacs-widget-accessors.c (Fgtk_file_selection_ok_button): - * emacs-widget-accessors.c (Fgtk_file_selection_cancel_button): - * emacs-widget-accessors.c (Fgtk_file_selection_help_button): - * emacs-widget-accessors.c (Fgtk_file_selection_action_area): - * emacs-widget-accessors.c (Fgtk_font_selection_dialog_fontsel): - * emacs-widget-accessors.c (Fgtk_font_selection_dialog_main_vbox): - * emacs-widget-accessors.c (Fgtk_font_selection_dialog_action_area): - * emacs-widget-accessors.c (Fgtk_font_selection_dialog_ok_button): - * emacs-widget-accessors.c (Fgtk_font_selection_dialog_apply_button): - * emacs-widget-accessors.c (Fgtk_font_selection_dialog_cancel_button): - * emacs-widget-accessors.c (Fgtk_color_selection_dialog_colorsel): - * emacs-widget-accessors.c (Fgtk_color_selection_dialog_main_vbox): - * emacs-widget-accessors.c (Fgtk_color_selection_dialog_ok_button): - * emacs-widget-accessors.c (Fgtk_color_selection_dialog_reset_button): - * emacs-widget-accessors.c (Fgtk_color_selection_dialog_cancel_button): - * emacs-widget-accessors.c (Fgtk_color_selection_dialog_help_button): - * emacs-widget-accessors.c (Fgtk_dialog_vbox): - * emacs-widget-accessors.c (Fgtk_dialog_action_area): - * emacs-widget-accessors.c (Fgtk_input_dialog_close_button): - * emacs-widget-accessors.c (Fgtk_input_dialog_save_button): - * emacs-widget-accessors.c (Fgtk_plug_socket_window): - * emacs-widget-accessors.c (Fgtk_plug_same_app): - * emacs-widget-accessors.c (Fgtk_object_flags): - * emacs-widget-accessors.c (Fgtk_object_ref_count): - * emacs-widget-accessors.c (Fgtk_paned_child1): - * emacs-widget-accessors.c (Fgtk_paned_child2): - * emacs-widget-accessors.c (Fgtk_paned_child1_resize): - * emacs-widget-accessors.c (Fgtk_paned_child2_resize): - * emacs-widget-accessors.c (Fgtk_paned_child1_shrink): - * emacs-widget-accessors.c (Fgtk_paned_child2_shrink): - * emacs-widget-accessors.c (Fgtk_clist_rows): - * emacs-widget-accessors.c (Fgtk_clist_columns): - * emacs-widget-accessors.c (Fgtk_clist_hadjustment): - * emacs-widget-accessors.c (Fgtk_clist_vadjustment): - * emacs-widget-accessors.c (Fgtk_clist_sort_type): - * emacs-widget-accessors.c (Fgtk_clist_focus_row): - * emacs-widget-accessors.c (Fgtk_clist_sort_column): - * emacs-widget-accessors.c (Fgtk_list_children): - * emacs-widget-accessors.c (Fgtk_list_selection): - * emacs-widget-accessors.c (Fgtk_tree_children): - * emacs-widget-accessors.c (Fgtk_tree_root_tree): - * emacs-widget-accessors.c (Fgtk_tree_tree_owner): - * emacs-widget-accessors.c (Fgtk_tree_selection): - * emacs-widget-accessors.c (Fgtk_tree_item_subtree): - * emacs-widget-accessors.c (Fgtk_scrolled_window_hscrollbar): - * emacs-widget-accessors.c (Fgtk_scrolled_window_vscrollbar): - * emacs-widget-accessors.c (Fgtk_scrolled_window_hscrollbar_visible): - * emacs-widget-accessors.c (Fgtk_scrolled_window_vscrollbar_visible): - * emacs.c (main_1): - * emacs.c (Fsplit_path): - * emacs.c (syms_of_emacs): - * emodules.c (emodules_load): - * esd.c: - * esd.c (esd_play_sound_file): - * esd.c (esd_play_sound_data): - * eval.c: - * eval.c (print_subr): - * eval.c (FletX): - * eval.c (Flet): - * eval.c (Fdefvar): - * eval.c (Fdefconst): - * eval.c (condition_case_3): - * eval.c (return_from_signal): - * eval.c (signal_error_1): - * eval.c (maybe_signal_error_1): - * eval.c (maybe_signal_continuable_error_1): - * eval.c (signal_error): - * eval.c (maybe_signal_error): - * eval.c (signal_continuable_error): - * eval.c (maybe_signal_continuable_error): - * eval.c (signal_error_2): - * eval.c (maybe_signal_error_2): - * eval.c (signal_continuable_error_2): - * eval.c (maybe_signal_continuable_error_2): - * eval.c (signal_ferror): - * eval.c (maybe_signal_ferror): - * eval.c (signal_continuable_ferror): - * eval.c (maybe_signal_continuable_ferror): - * eval.c (signal_ferror_with_frob): - * eval.c (maybe_signal_ferror_with_frob): - * eval.c (signal_continuable_ferror_with_frob): - * eval.c (maybe_signal_continuable_ferror_with_frob): - * eval.c (signal_quit): - * eval.c (signal_invalid_function_error): - * eval.c (signal_wrong_number_of_arguments_error): - * eval.c (signal_malformed_list_error): - * eval.c (signal_malformed_property_list_error): - * eval.c (signal_circular_list_error): - * eval.c (signal_circular_property_list_error): - * eval.c (syntax_error): - * eval.c (syntax_error_2): - * eval.c (maybe_syntax_error): - * eval.c (sferror): - * eval.c (sferror_2): - * eval.c (maybe_sferror): - * eval.c (invalid_argument): - * eval.c (invalid_argument_2): - * eval.c (maybe_invalid_argument): - * eval.c (invalid_constant): - * eval.c (invalid_constant_2): - * eval.c (maybe_invalid_constant): - * eval.c (invalid_operation): - * eval.c (invalid_operation_2): - * eval.c (maybe_invalid_operation): - * eval.c (invalid_change): - * eval.c (invalid_change_2): - * eval.c (maybe_invalid_change): - * eval.c (invalid_state): - * eval.c (invalid_state_2): - * eval.c (maybe_invalid_state): - * eval.c (stack_overflow): - * eval.c (out_of_memory): - * eval.c (printing_unreadable_object): - * eval.c (do_autoload): - * eval.c (Feval): - * eval.c (Ffuncall): - * eval.c (grow_specpdl): - * eval.c (syms_of_eval): - * event-Xt.c (syms_of_event_Xt): - * event-gtk.c (syms_of_event_gtk): - * event-msw.c (mswindows_need_event_in_modal_loop): - * event-msw.c (emacs_mswindows_select_process): - * event-stream.c: - * event-stream.c (check_event_stream_ok): - * event-stream.c (lisp_number_to_milliseconds): - * event-stream.c (Fnext_event): - * event-stream.c (munge_keymap_translate): - * event-stream.c (Fset_recent_keys_ring_size): - * event-stream.c (execute_command_event): - * event-stream.c (syms_of_event_stream): - * events.c (print_event): - * events.c (Fmake_event): - * events.c (WRONG_EVENT_TYPE_FOR_PROPERTY): - * events.c (Fdeallocate_event): - * events.c (Fcopy_event): - * events.c (character_to_event): - * events.c (syms_of_events): - * extents.c (print_extent): - * extents.c (Fset_extent_parent): - * extents.c (decode_map_extents_flags): - * extents.c (decode_extent_at_flag): - * extents.c (symbol_to_glyph_layout): - * extents.c (Fset_extent_property): - * extents.c (syms_of_extents): - * faces.c (face_validate): - * faces.c (Fget_face): - * faces.c (syms_of_faces): - * file-coding.c: - * file-coding.c (print_coding_system): - * file-coding.c (symbol_to_eol_type): - * file-coding.c (Fget_coding_system): - * file-coding.c (parse_charset_conversion_specs): - * file-coding.c (Fmake_coding_system): - * file-coding.c (Fcoding_system_aliasee): - * file-coding.c (Fdefine_coding_system_alias): - * file-coding.c (Fcoding_system_property): - * file-coding.c (decode_coding_category): - * file-coding.c (Fset_coding_priority_list): - * file-coding.c (syms_of_file_coding): - * fileio.c: - * fileio.c (report_file_type_error): - * fileio.c (report_error_with_errno): - * fileio.c (report_file_error): - * fileio.c (Fmake_temp_name): - * fileio.c (Ffile_truename): - * fileio.c (Fmake_directory_internal): - * fileio.c (Fdelete_directory): - * fileio.c (Fdelete_file): - * fileio.c (Fset_file_modes): - * fileio.c (syms_of_fileio): - * filelock.c (syms_of_filelock): - * floatfns.c (float_error): - * fns.c: - * fns.c (check_losing_bytecode): - * fns.c (safe_copy_tree): - * fns.c (Fget): - * fns.c (Fput): - * fns.c (Fremprop): - * fns.c (Fobject_plist): - * fns.c (internal_equal): - * fns.c (internal_old_equal): - * fns.c (Fload_average): - * fns.c (Frequire): - * fns.c (base64_conversion_error): - * fns.c (base64_decode_1): - * fns.c (syms_of_fns): - * font-lock.c (syms_of_font_lock): - * frame-gtk.c (gtk_create_widgets): - * frame-gtk.c (gtk_init_frame_1): - * frame-gtk.c (gtk_cant_notify_wm_error): - * frame-gtk.c (syms_of_frame_gtk): - * frame-x.c (x_create_widgets): - * frame-x.c (x_init_frame_1): - * frame-x.c (x_cant_notify_wm_error): - * frame-x.c (syms_of_frame_x): - * frame.c (print_frame): - * frame.c (setup_frame_without_minibuffer): - * frame.c (Fmake_frame): - * frame.c (selected_frame): - * frame.c (device_selected_frame): - * frame.c (Fset_frame_selected_window): - * frame.c (delete_frame_internal): - * frame.c (Fmake_frame_invisible): - * frame.c (store_minibuf_frame_prop): - * frame.c (syms_of_frame): - * general-slots.h: - * glade.c (Fglade_xml_textdomain): - * glyphs-gtk.c: - * glyphs-gtk.c (check_pointer_sizes): - * glyphs-gtk.c (init_image_instance_from_gdk_image): - * glyphs-gtk.c (image_instance_add_gdk_image): - * glyphs-gtk.c (init_image_instance_from_xbm_inline): - * glyphs-gtk.c (write_lisp_string_to_temp_file): - * glyphs-gtk.c (gtk_xpm_instantiate): - * glyphs-gtk.c (gtk_xface_instantiate): - * glyphs-gtk.c (gtk_resource_validate): - * glyphs-gtk.c (gtk_resource_normalize): - * glyphs-gtk.c (gtk_resource_instantiate): - * glyphs-gtk.c (check_valid_resource_symbol): - * glyphs-gtk.c (check_valid_resource_id): - * glyphs-gtk.c (font_instantiate): - * glyphs-gtk.c (cursor_font_instantiate): - * glyphs-gtk.c (gtk_subwindow_instantiate): - * glyphs-gtk.c (syms_of_glyphs_gtk): - * glyphs-msw.c: - * glyphs-msw.c (init_image_instance_from_dibitmap): - * glyphs-msw.c (image_instance_add_dibitmap): - * glyphs-msw.c (mswindows_init_image_instance_from_eimage): - * glyphs-msw.c (xpm_to_eimage): - * glyphs-msw.c (mswindows_xpm_instantiate): - * glyphs-msw.c (mswindows_resource_validate): - * glyphs-msw.c (mswindows_resource_normalize): - * glyphs-msw.c (resource_name_to_resource): - * glyphs-msw.c (mswindows_resource_instantiate): - * glyphs-msw.c (check_valid_resource_symbol): - * glyphs-msw.c (check_valid_resource_id): - * glyphs-msw.c (mswindows_xface_instantiate): - * glyphs-msw.c (mswindows_subwindow_instantiate): - * glyphs-msw.c (mswindows_widget_instantiate): - * glyphs-msw.c (add_tree_item): - * glyphs-msw.c (add_tab_item): - * glyphs-msw.c (mswindows_combo_box_instantiate): - * glyphs-msw.c (syms_of_glyphs_mswindows): - * glyphs-msw.c (console_type_create_glyphs_mswindows): - * glyphs-widget.c (check_valid_orientation): - * glyphs-widget.c (check_valid_tab_orientation): - * glyphs-widget.c (check_valid_justification): - * glyphs-widget.c (widget_validate): - * glyphs-widget.c (combo_box_validate): - * glyphs-x.c (write_lisp_string_to_temp_file): - * glyphs-x.c (check_pointer_sizes): - * glyphs-x.c (init_image_instance_from_x_image): - * glyphs-x.c (image_instance_add_x_image): - * glyphs-x.c (init_image_instance_from_xbm_inline): - * glyphs-x.c (x_xpm_instantiate): - * glyphs-x.c (x_xface_instantiate): - * glyphs-x.c (font_instantiate): - * glyphs-x.c (cursor_font_instantiate): - * glyphs-x.c (x_redisplay_widget): - * glyphs-x.c (x_subwindow_instantiate): - * glyphs-x.c (x_widget_instantiate): - * glyphs.c: - * glyphs.c (decode_device_ii_format): - * glyphs.c (process_image_string_instantiator): - * glyphs.c (if): - * glyphs.c (file_or_data_must_be_present): - * glyphs.c (data_must_be_present): - * glyphs.c (face_must_be_present): - * glyphs.c (get_image_instantiator_governing_domain): - * glyphs.c (instantiate_image_instantiator): - * glyphs.c (print_image_instance): - * glyphs.c (decode_image_instance_type): - * glyphs.c (incompatible_image_types): - * glyphs.c (make_image_instance_1): - * glyphs.c (signal_image_error): - * glyphs.c (signal_image_error_2): - * glyphs.c (signal_double_image_error_2): - * glyphs.c (simple_image_type_normalize): - * glyphs.c (check_valid_xbm_inline): - * glyphs.c (bitmap_to_lisp_data): - * glyphs.c (xbm_normalize): - * glyphs.c (xface_normalize): - * glyphs.c (pixmap_to_lisp_data): - * glyphs.c (check_valid_xpm_color_symbols): - * glyphs.c (evaluate_xpm_color_symbols): - * glyphs.c (xpm_normalize): - * glyphs.c (image_instantiate): - * glyphs.c (image_validate): - * glyphs.c (print_glyph): - * glyphs.c (decode_glyph_type): - * glyphs.c (subwindow_instantiate): - * glyphs.c (syms_of_glyphs): - * glyphs.h: - * gpmevent.c (Fgpm_enable): - * gui-gtk.c (syms_of_gui_gtk): - * gui-x.c (button_item_to_widget_value): - * gui-x.c (gui_items_to_widget_values_1): - * gui-x.c (gui_items_to_widget_values): - * gui.c: - * gui.c (gui_item_add_keyval_pair): - * gui.c (make_gui_item_from_keywords_internal): - * gui.c (widget_gui_parse_item_keywords): - * gui.c (update_gui_item_keywords): - * gui.c (signal_too_long_error): - * gui.c (print_gui_item): - * gui.c (parse_gui_item_tree_item): - * gui.c (syms_of_gui): - * gutter.c (decode_gutter_position): - * gutter.c (gutter_validate): - * gutter.c (gutter_size_validate): - * gutter.c (gutter_visible_validate): - * gutter.c (syms_of_gutter): - * hpplay.c: - * hpplay.c (player_error_internal): - * hpplay.c (myHandler): - * hpplay.c (play_bucket_internal): - * hpplay.c (play_sound_file): - * hpplay.c (play_sound_data): - * hpplay.c (vars_of_hpplay): - * indent.c (Findent_to): - * indent.c (syms_of_indent): - * input-method-xlib.c (Fx_open_xim): - * input-method-xlib.c (Fx_close_xim): - * input-method-xlib.c (syms_of_input_method_xlib): - * insdel.c (get_buffer_range_char): - * insdel.c (get_string_range_char): - * insdel.c (make_gap): - * insdel.c (buffer_insert_string_1): - * intl.c (syms_of_intl): - * keymap.c (print_keymap): - * keymap.c (traverse_keymaps): - * keymap.c (check_keymap_definition_loop): - * keymap.c (define_key_check_and_coerce_keysym): - * keymap.c (define_key_parser): - * keymap.c (key_desc_list_to_event): - * keymap.c (ensure_meta_prefix_char_keymapp): - * keymap.c (Fdefine_key): - * keymap.c (Fsingle_key_description): - * keymap.c (Ftext_char_description): - * libsst.c: - * libsst.c (dial;): - * libsst.h: - * libsst.h (sst_dtmf): - * linuxplay.c: - * linuxplay.c (audio_init): - * linuxplay.c (linux_play_data_or_file): - * linuxplay.c (play_sound_file): - * linuxplay.c (play_sound_data): - * lisp.h: - * lread.c (read_syntax_error): - * lread.c (continuable_read_syntax_error): - * lread.c (readchar): - * lread.c (pas_de_holgazan_ici): - * lread.c (load_force_doc_string_unwind): - * lread.c (Fload_internal): - * lread.c (decode_mode_1): - * lread.c (readevalloop): - * lread.c (Feval_buffer): - * lread.c (read_escape): - * lread.c (FSF_LOSSAGE): - * lread.c (read_atom_0): - * lread.c (reader_nextchar): - * lread.c (read_list_conser): - * lread.c (syms_of_lread): - * lread.c (vars_of_lread): - * lstream.c (Lstream_internal_error): - * lstream.h (wrap_lstream): - * macros.c (Fstart_kbd_macro): - * macros.c (Fend_kbd_macro): - * macros.c (pop_kbd_macro_event): - * macros.c (Fcall_last_kbd_macro): - * macros.c (Fexecute_kbd_macro): - * macros.c (syms_of_macros): - * marker.c (print_marker): - * marker.c (set_marker_internal): - * marker.c (bi_marker_position): - * marker.c (marker_position): - * marker.c (set_bi_marker_position): - * marker.c (set_marker_position): - * md5.c (md5_coding_system): - * menubar-gtk.c (menu_convert): - * menubar-gtk.c (menu_descriptor_to_widget_1): - * menubar-msw.c (mswindows_translate_menu_or_dialog_item): - * menubar-msw.c (populate_menu_add_item): - * menubar-msw.c (populate_or_checksum_helper): - * menubar-msw.c (unsafe_handle_wm_initmenupopup_1): - * menubar-msw.c (mswindows_popup_menu): - * menubar-x.c (menu_item_descriptor_to_widget_value_1): - * menubar-x.c (x_popup_menu): - * menubar-x.c (Faccelerate_menu): - * menubar.c (syms_of_menubar): - * menubar.c (vars_of_menubar): - * minibuf.c (Ftry_completion): - * minibuf.c (syms_of_minibuf): - * miscplay.c: - * miscplay.c (parse_wave_complete): - * miscplay.c (waverequire): - * miscplay.c (parsewave): - * miscplay.c (parsesundecaudio): - * miscplay.c (sndcnv8U_2mono): - * miscplay.c (sndcnv8S_2mono): - * miscplay.c (sndcnv2monounsigned): - * miscplay.c (sndcnv2unsigned): - * miscplay.c (int2ulaw): - * miscplay.c (sndcnvULaw_2linear): - * miscplay.c (sndcnvULaw_2mono): - * miscplay.c (sndcnv16_2monoLE): - * miscplay.c (sndcnv16_2monoBE): - * miscplay.c (sndcnv2byteLE): - * miscplay.c (sndcnv2byteBE): - * miscplay.c (sndcnv2monobyteLE): - * miscplay.c (sndcnv2monobyteBE): - * miscplay.c (analyze_format): - * miscplay.h: - * miscplay.h (HEADERSZ): - * miscplay.h (parse_wave_complete): - * mule-ccl.c (Fccl_execute): - * mule-ccl.c (vars_of_mule_ccl): - * mule-charset.c (print_charset): - * mule-charset.c (get_unallocated_leading_byte): - * mule-charset.c (Fget_charset): - * mule-charset.c (Fmake_charset): - * mule-charset.c (Fcharset_from_attributes): - * mule-charset.c (Fcharset_property): - * mule-charset.c (Fset_charset_ccl_program): - * mule-charset.c (Fmake_char): - * mule-charset.c (Fchar_octet): - * mule-charset.c (lookup_composite_char): - * mule-charset.c (syms_of_mule_charset): - * mule-wnnfns.c (Fwnn_set_param): - * mule-wnnfns.c (syms_of_mule_wnn): - * mule.c (Fdefine_word_pattern): - * nas.c: - * nas.c (XTOOLKIT): - * nas.c (play_sound_file): - * nas.c (close_down_play): - * nas.c (do_caching_play): - * nas.c (play_sound_data): - * nas.c (CatchIoErrorAndJump): - * nas.c (NameFromData): - * nas.c (SndOpenDataForReading): - * nas.c (cmpID): - * nas.c (dread): - * nas.c (dgetc): - * nas.c (readChunk): - * nas.c (WaveOpenDataForReading): - * nas.c (SoundOpenDataForReading): - * ntplay.c: - * ntplay.c (play_sound_file): - * ntplay.c (play_sound_data_1): - * ntplay.c (play_sound_data): - * ntproc.c: - * ntproc.c (prepare_standard_handles): - * ntproc.c (vars_of_ntproc): - * objects-gtk.c (gtk_parse_nearest_color): - * objects-gtk.c (gtk_initialize_font_instance): - * objects-msw.c (mswindows_initialize_color_instance): - * objects-msw.c (initialize_font_instance): - * objects-x.c (x_parse_nearest_color): - * objects-x.c (x_initialize_font_instance): - * objects-x.c (x_font_instance_truename): - * objects.c (finalose): - * objects.c (print_color_instance): - * objects.c (print_font_instance): - * objects.c (font_instance_truename_internal): - * objects.c (color_instantiate): - * objects.c (color_validate): - * objects.c (font_validate): - * objects.c (face_boolean_instantiate): - * objects.c (face_boolean_validate): - * objects.c (syms_of_objects): - * postgresql.c (CHECK_LIVE_CONNECTION): - * postgresql.c (print_pgconn): - * postgresql.c (finalize_pgconn): - * postgresql.c (print_pgresult): - * postgresql.c (finalize_pgresult): - * postgresql.c (Fpq_connectdb): - * postgresql.c (Fpq_connect_start): - * postgresql.c (Fpq_connect_poll): - * postgresql.c (Fpq_set_client_encoding): - * postgresql.c (Fpq_reset_start): - * postgresql.c (Fpq_reset_poll): - * postgresql.c (Fpq_pgconn): - * postgresql.c (Fpq_exec): - * postgresql.c (Fpq_send_query): - * postgresql.c (Fpq_get_result): - * postgresql.c (Fpq_result_status): - * postgresql.c (Fpq_make_empty_pgresult): - * postgresql.c (syms_of_postgresql): - * print.c: - * print.c (print_error_message): - * print.c (print_cons): - * print.c (default_object_printer): - * print.c (Fexternal_debugging_output): - * print.c (Fopen_termscript): - * print.c (syms_of_print): - * process-nt.c: - * process-nt.c (validate_signal_number): - * process-nt.c (mswindows_report_process_error): - * process-nt.c (mswindows_report_winsock_error): - * process-nt.c (nt_create_process): - * process-nt.c (get_internet_address): - * process-nt.c (nt_canonicalize_host_name): - * process-nt.c (nt_open_network_stream): - * process-unix.c (get_internet_address): - * process-unix.c (unix_create_process): - * process-unix.c (unix_send_process): - * process-unix.c (unix_kill_child_process): - * process-unix.c (unix_canonicalize_host_name): - * process-unix.c (unix_open_network_stream): - * process-unix.c (unix_open_multicast_group): - * process.c: - * process.c (print_process): - * process.c (get_process): - * process.c (report_process_error): - * process.c (init_process_io_handles): - * process.c (Fstart_process_internal): - * process.c (send_process): - * process.c (decode_signal): - * process.c (process_send_signal): - * process.c (Fkill_process): - * process.c (Fquit_process): - * process.c (Fstop_process): - * process.c (Fcontinue_process): - * process.c (Fprocess_send_eof): - * process.c (syms_of_process): - * ralloc.c (syms_of_ralloc): - * rangetab.c (Fput_range_table): - * rangetab.c (rangetab_data_validate): - * rangetab.c (syms_of_rangetab): - * redisplay.c (syms_of_redisplay): - * scrollbar.c (syms_of_scrollbar): - * search.c (matcher_overflow): - * search.c (compile_pattern_1): - * search.c (skip_chars): - * search.c (search_command): - * search.c (Freplace_match): - * search.c (Fmatch_data): - * search.c (syms_of_search): - * select-gtk.c (gtk_get_foreign_selection): - * select-gtk.c (gtk_get_window_property_as_lisp_data): - * select-gtk.c (lisp_data_to_selection_data): - * select-x.c (motif_clipboard_cb): - * select-x.c (x_reply_selection_request): - * select-x.c (copy_multiple_data): - * select-x.c (x_get_foreign_selection): - * select-x.c (x_get_window_property_as_lisp_data): - * select-x.c (lisp_data_to_selection_data): - * select-x.c (CHECK_CUTBUFFER): - * select-x.c (Fx_get_cutbuffer_internal): - * select-x.c (syms_of_select_x): - * select.c (Fown_selection_internal): - * select.c (syms_of_select): - * sgiplay.c: - * sgiplay.c (play_sound_file): - * sgiplay.c (play_sound_data): - * sgiplay.c (audio_initialize): - * sgiplay.c (play_internal): - * sgiplay.c (write_mulaw_8_chunk): - * sgiplay.c (write_linear_chunk): - * sgiplay.c (initialize_audio_port): - * sgiplay.c (open_audio_port): - * sgiplay.c (set_channels): - * sgiplay.c (set_output_format): - * sgiplay.c (struct): - * sgiplay.c (parse_snd_header): - * sheap.c (sheap_adjust_h): - * sound.c: - * sound.c (report_sound_error): - * sound.c (Fplay_sound_file): - * sound.c (Fplay_sound): - * sound.c (Fding): - * sound.c (init_nas_sound): - * sound.c (init_native_sound): - * sound.c (syms_of_sound): - * specifier.c: - * specifier.c (print_specifier): - * specifier.c (decode_specifier_type): - * specifier.c (check_valid_locale_or_locale_type): - * specifier.c (decode_locale): - * specifier.c (decode_locale_type): - * specifier.c (check_valid_domain): - * specifier.c (decode_specifier_tag_set): - * specifier.c (Fcanonicalize_tag_set): - * specifier.c (Fdefine_specifier_tag): - * specifier.c (Fspecifier_tag_predicate): - * specifier.c (check_valid_inst_list): - * specifier.c (check_valid_spec_list): - * specifier.c (decode_how_to_add_specification): - * specifier.c (check_modifiable_specifier): - * specifier.c (Fcopy_specifier): - * specifier.c (check_valid_specifier_matchspec): - * specifier.c (specifier_instance): - * specifier.c (boolean_validate): - * specifier.c (syms_of_specifier): - * sunplay.c: - * sunplay.c (init_device): - * sunplay.c (play_sound_file): - * sunplay.c (play_sound_data): - * symbols.c (oblookup): - * symbols.c (reject_constant_symbols): - * symbols.c (verify_ok_for_buffer_local): - * symbols.c (Fset): - * symbols.c (decode_magic_handler_type): - * symbols.c (handler_type_from_function_symbol): - * symbols.c (Fdefvaralias): - * symbols.c (init_symbols_once_early): - * symeval.h: - * symsinit.h: - * syntax.c (scan_lists): - * syntax.c (scan_sexps_forward): - * syntax.c (syms_of_syntax): - * sysdep.c (stuff_char): - * sysdep.c (sys_subshell): - * sysdep.c (dup2): - * toolbar-msw.c (mswindows_output_toolbar): - * toolbar.c (decode_toolbar_position): - * toolbar.c (compute_frame_toolbar_buttons): - * toolbar.c (CTB_ERROR): - * toolbar.c (check_toolbar_button_keywords): - * toolbar.c (toolbar_validate): - * toolbar.c (syms_of_toolbar): - * tooltalk.c (print_tooltalk_message): - * tooltalk.c (print_tooltalk_pattern): - * tooltalk.c (check_status): - * tooltalk.c (Ftooltalk_open_connection): - * tooltalk.c (syms_of_tooltalk): - * ui-byhand.c (Fgtk_box_query_child_packing): - * ui-byhand.c (Fgtk_button_box_get_child_size): - * ui-byhand.c (Fgtk_calendar_get_date): - * ui-byhand.c (Fgtk_clist_get_text): - * ui-byhand.c (Fgtk_clist_get_selection): - * ui-byhand.c (Fgtk_clist_get_pixmap): - * ui-byhand.c (Fgtk_clist_get_pixtext): - * ui-byhand.c (Fgtk_color_selection_get_color): - * ui-byhand.c (Fgtk_editable_insert_text): - * ui-byhand.c (Fgtk_pixmap_get): - * ui-byhand.c (Fgtk_curve_get_vector): - * ui-byhand.c (Fgtk_curve_set_vector): - * ui-byhand.c (Fgtk_label_get): - * ui-byhand.c (Fgtk_notebook_query_tab_label_packing): - * ui-byhand.c (Fgtk_widget_get_pointer): - * ui-byhand.c (generic_toolbar_insert_item): - * ui-gtk.c (Fdll_load): - * ui-gtk.c (ffi_object_printer): - * ui-gtk.c (Fgtk_import_variable_internal): - * ui-gtk.c (Fgtk_import_function_internal): - * ui-gtk.c (Fgtk_call_function): - * ui-gtk.c (emacs_gtk_object_printer): - * ui-gtk.c (object_getprop): - * ui-gtk.c (object_putprop): - * ui-gtk.c (emacs_gtk_object_finalizer): - * ui-gtk.c (emacs_gtk_boxed_printer): - * ui-gtk.c (Fgtk_fundamental_type): - * ui-gtk.c (Fgtk_describe_type): - * ui-gtk.c (syms_of_ui_gtk): - * ui-gtk.c (lisp_to_gtk_type): - * ui-gtk.c (symbol_to_enum): - * ui-gtk.c (enum_to_symbol): - * undo.c (Fprimitive_undo): - * undo.c (syms_of_undo): - * unexaix.c (report_error): - * unexaix.c (report_error_1): - * unexapollo.c (unexec): - * unexapollo.c (CopyData): - * unexconvex.c (report_error): - * unexconvex.c (a2;): - * unexec.c (report_error): - * unexec.c (report_error_1): - * widget.c (syms_of_widget): - * win32.c (Fmswindows_shell_execute): - * window.c (print_window): - * window.c (Fdelete_window): - * window.c (Fdelete_other_windows): - * window.c (Fset_window_buffer): - * window.c (Fselect_window): - * window.c (Fsplit_window): - * window.c (change_window_height): - * window.c (window_scroll): - * window.c (Fother_window_for_scrolling): - * window.c (print_window_config): - * window.c (syms_of_window): - 2001-05-19 Ben Wing <ben@xemacs.org> * glyphs-shared.c: New. Try just a bit to start eliminating @@ -1358,7 +642,6 @@ * general-slots.h: * glade.c (Fglade_xml_textdomain): * glyphs-gtk.c: - * glyphs-msw.c (console_type_create_glyphs_mswindows): * glyphs-gtk.c (check_pointer_sizes): * glyphs-gtk.c (init_image_instance_from_gdk_image): * glyphs-gtk.c (image_instance_add_gdk_image): @@ -1376,6 +659,7 @@ * glyphs-gtk.c (gtk_subwindow_instantiate): * glyphs-gtk.c (syms_of_glyphs_gtk): * glyphs-msw.c: + * glyphs-msw.c (console_type_create_glyphs_mswindows): * glyphs-msw.c (init_image_instance_from_dibitmap): * glyphs-msw.c (image_instance_add_dibitmap): * glyphs-msw.c (mswindows_init_image_instance_from_eimage):