view lib-src/ChangeLog @ 2720:6fa9919a9a0b

[xemacs-hg @ 2005-04-08 23:10:01 by crestani] ChangeLog addition: 2005-04-01  Marcus Crestani  <crestani@xemacs.org>         The new allocator.         New configure flag: `MC_ALLOC':         * configure.ac (XE_COMPLEX_ARG_ENABLE): Add `--enable-mc-alloc' as         a new configure flag.         * configure.in (AC_INIT_PARSE_ARGS): Add `--mc-alloc' as a new         configure flag.         * configure.usage: Add description for `mc-alloc'.         DUMP_IN_EXEC:         * Makefile.in.in: Condition the installation of a separate dump         file on !DUMP_ON_EXEC.         * configure.ac (XE_COMPLEX_ARG_ENABLE): Add         `--enable-dump-in-exec' as a new configure flag.         * configure.ac: DUMP_IN_EXEC is define as default for PDUMP but         not default for MC_ALLOC.         * configure.in (AC_INIT_PARSE_ARGS): Add `--dump-in-exec' as a         new configure flag.         * configure.in: DUMP_IN_EXEC is define as default for PDUMP but         not default for MC_ALLOC.         * configure.usage: Add description for `dump-in-exec'. lib-src/ChangeLog addition: 2005-04-01  Marcus Crestani  <crestani@xemacs.org>         The new allocator.         DUMP_IN_EXEC:                  * Makefile.in.in: Only compile insert-data-in-exec if         DUMP_IN_EXEC is defined. lisp/ChangeLog addition: 2005-04-01  Marcus Crestani  <crestani@xemacs.org>         The new allocator.         MEMORY_USAGE_STATS         * diagnose.el: Add new lisp function to pretty print statistics         about the new allocator.         * diagnose.el (show-mc-alloc-memory-usage): New. modules/ChangeLog addition: 2005-04-01  Marcus Crestani  <crestani@xemacs.org>         The new allocator.         Remove Lcrecords:                  * postgresql/postgresql.c (allocate_pgconn): Allocate with new         allocator.         * postgresql/postgresql.c (allocate_pgresult): Allocate PGresult         with new allocator.           * postgresql/postgresql.h (struct Lisp_PGconn): Add         lrecord_header.         * postgresql/postgresql.h (struct Lisp_PGresult): Add         lrecord_header.         * ldap/eldap.c (allocate_ldap): Allocate with new allocator.         * ldap/eldap.h (struct Lisp_LDAP): Add lrecord_header. nt/ChangeLog addition: 2005-04-01  Marcus Crestani  <crestani@xemacs.org>         The new allocator.         New configure flag: `MC_ALLOC':         * config.inc.samp: Add new flag `MC_ALLOC'.         * xemacs.mak: Add flag and configuration output for `MC_ALLOC'.         New files:         * xemacs.dsp: Add source files mc-alloc.c and mc-alloc.h.         * xemacs.mak: Add new object file mc-alloc.obj to dependencies. src/ChangeLog addition: 2005-04-01  Marcus Crestani  <crestani@xemacs.org>         The new allocator.         New configure flag: `MC_ALLOC':         * config.h.in: Add new flag `MC_ALLOC'.         New files:         * Makefile.in.in: Add new object file mc-alloc.o.         * depend: Add new files to dependencies.         * mc-alloc.c: New.         * mc-alloc.h: New.         Running the new allocator from XEmacs:         * alloc.c (deadbeef_memory): Moved to mc-alloc.c.         * emacs.c (main_1): Initialize the new allocator and add         syms_of_mc_alloc.         * symsinit.h: Add syms_of_mc_alloc.         New lrecord allocation and free functions:         * alloc.c (alloc_lrecord): New. Allocates an lrecord, includes         type checking and initializing of the lrecord_header.         * alloc.c (noseeum_alloc_lrecord): Same as above, but increments         the NOSEEUM cons counter.         * alloc.c (free_lrecord): New. Calls the finalizer and frees the         lrecord.         * lrecord.h: Add lrecord allocation prototypes and comments.         Remove old lrecord FROB block allocation:                  * alloc.c (allocate_lisp_storage): Former function to expand         heap. Not needed anymore, remove.         * alloc.c: Completely remove `Fixed-size type macros'         * alloc.c (release_breathing_space): Remove.         * alloc.c (memory_full): Remove release_breathing_space.         * alloc.c (refill_memory_reserve): Remove.         * alloc.c (TYPE_ALLOC_SIZE): Remove.         * alloc.c (DECLARE_FIXED_TYPE_ALLOC): Remove.         * alloc.c (ALLOCATE_FIXED_TYPE_FROM_BLOCK): Remove.         * alloc.c (ALLOCATE_FIXED_TYPE_1): Remove.         * alloc.c (ALLOCATE_FIXED_TYPE): Remove.         * alloc.c (NOSEEUM_ALLOCATE_FIXED_TYPE): Remove.         * alloc.c (struct Lisp_Free): Remove.         * alloc.c (LRECORD_FREE_P): Remove.         * alloc.c (MARK_LRECORD_AS_FREE): Remove.         * alloc.c (MARK_LRECORD_AS_NOT_FREE): Remove.         * alloc.c (PUT_FIXED_TYPE_ON_FREE_LIST): Remove.         * alloc.c (FREE_FIXED_TYPE): Remove.         * alloc.c (FREE_FIXED_TYPE_WHEN_NOT_IN_GC): Remove.         Allocate old lrecords with new allocator:                  * alloc.c: DECLARE_FIXED_TYPE_ALLOC removed for all lrecords         defined in alloc.c.         * alloc.c (Fcons): Allocate with new allocator.         * alloc.c (noseeum_cons): Allocate with new allocator.         * alloc.c (make_float): Allocate with new allocator.         * alloc.c (make_bignum): Allocate with new allocator.         * alloc.c (make_bignum_bg): Allocate with new allocator.         * alloc.c (make_ratio): Allocate with new allocator.         * alloc.c (make_ratio_bg): Allocate with new allocator.         * alloc.c (make_ratio_rt): Allocate with new allocator.         * alloc.c (make_bigfloat): Allocate with new allocator.         * alloc.c (make_bigfloat_bf): Allocate with new allocator.         * alloc.c (make_compiled_function): Allocate with new allocator.         * alloc.c (Fmake_symbol): Allocate with new allocator.         * alloc.c (allocate_extent): Allocate with new allocator.         * alloc.c (allocate_event): Allocate with new allocator.         * alloc.c (make_key_data): Allocate with new allocator.         * alloc.c (make_button_data): Allocate with new allocator.         * alloc.c (make_motion_data): Allocate with new allocator.         * alloc.c (make_process_data): Allocate with new allocator.         * alloc.c (make_timeout_data): Allocate with new allocator.         * alloc.c (make_magic_data): Allocate with new allocator.         * alloc.c (make_magic_eval_data): Allocate with new allocator.         * alloc.c (make_eval_data): Allocate with new allocator.         * alloc.c (make_misc_user_data): Allocate with new allocator.         * alloc.c (Fmake_marker): Allocate with new allocator.         * alloc.c (noseeum_make_marker): Allocate with new allocator.         * alloc.c (make_uninit_string): Allocate with new allocator.         * alloc.c (resize_string): Allocate with new allocator.         * alloc.c (make_string_nocopy): Allocate with new allocator.         Garbage Collection:         * alloc.c (GC_CHECK_NOT_FREE): Remove obsolete assertions.         * alloc.c (SWEEP_FIXED_TYPE_BLOCK): Remove.         * alloc.c (SWEEP_FIXED_TYPE_BLOCK_1): Remove.         * alloc.c (sweep_conses): Remove.         * alloc.c (free_cons): Use new allocator to free.         * alloc.c (sweep_compiled_functions): Remove.         * alloc.c (sweep_floats): Remove.         * alloc.c (sweep_bignums): Remove.         * alloc.c (sweep_ratios): Remove.         * alloc.c (sweep_bigfloats): Remove.         * alloc.c (sweep_symbols): Remove.         * alloc.c (sweep_extents): Remove.         * alloc.c (sweep_events): Remove.         * alloc.c (sweep_key_data): Remove.         * alloc.c (free_key_data): Use new allocator to free.         * alloc.c (sweep_button_data): Remove.         * alloc.c (free_button_data): Use new allocator to free.         * alloc.c (sweep_motion_data): Remove.         * alloc.c (free_motion_data): Use new allocator to free.         * alloc.c (sweep_process_data): Remove.         * alloc.c (free_process_data): Use new allocator to free.         * alloc.c (sweep_timeout_data): Remove.         * alloc.c (free_timeout_data): Use new allocator to free.         * alloc.c (sweep_magic_data): Remove.         * alloc.c (free_magic_data): Use new allocator to free.         * alloc.c (sweep_magic_eval_data): Remove.         * alloc.c (free_magic_eval_data): Use new allocator to free.         * alloc.c (sweep_eval_data): Remove.         * alloc.c (free_eval_data): Use new allocator to free.         * alloc.c (sweep_misc_user_data): Remove.         * alloc.c (free_misc_user_data): Use new allocator to free.         * alloc.c (sweep_markers): Remove.         * alloc.c (free_marker): Use new allocator to free.         * alloc.c (garbage_collect_1): Remove release_breathing_space.         * alloc.c (gc_sweep): Remove all the old lcrecord and lrecord         related stuff. Sweeping now works like this: compact string         chars, finalize, sweep.         * alloc.c (common_init_alloc_early): Remove old lrecord         initializations, remove breathing_space.         * emacs.c (Fdump_emacs): Remove release_breathing_space.         * lisp.h: Remove prototype for release_breathing_space.         * lisp.h: Adjust the special cons mark makros.         Lrecord Finalizer:         * alloc.c: Add finalizer to lrecord definition.         * alloc.c (finalize_string): Add finalizer for string.         * bytecode.c: Add finalizer to lrecord definition.         * bytecode.c (finalize_compiled_function): Add finalizer for         compiled function.         * marker.c: Add finalizer to lrecord definition.         * marker.c (finalize_marker): Add finalizer for marker.         These changes build the interface to mc-alloc:         * lrecord.h (MC_ALLOC_CALL_FINALIZER): Tell mc-alloc how to         finalize lrecords.         * lrecord.h (MC_ALLOC_CALL_FINALIZER_FOR_DISKSAVE): Tell         mc-alloc how to finalize for disksave.         Unify lrecords and lcrecords:         * lisp.h (struct Lisp_String): Adjust string union hack to         new lrecord header.         * lrecord.h: Adjust comments.         * lrecord.h (struct lrecord_header): The new lrecord header         includes type, lisp-readonly, free, and uid.         * lrecord.h (set_lheader_implementation): Adjust to new         lrecord_header.         * lrecord.h (struct lrecord_implementation): The field basic_p         for indication of an old lrecord is not needed anymore, remove.         * lrecord.h (MAKE_LRECORD_IMPLEMENTATION): Remove basic_p.         * lrecord.h (MAKE_EXTERNAL_LRECORD_IMPLEMENTATION): Remove         basic_p.         * lrecord.h (copy_sized_lrecord): Remove distinction between         old lrecords and lcrecords.         * lrecord.h (copy_lrecord): Remove distinction between old         lrecords and lcrecords.         * lrecord.h (zero_sized_lrecord): Remove distinction between         old lrecords and lcrecords.         * lrecord.h (zero_lrecord): Remove distinction between old         lrecords and lcrecords.         Remove lcrecords and lcrecord lists:         * alloc.c (basic_alloc_lcrecord): Not needed anymore, remove.         * alloc.c (very_old_free_lcrecord): Not needed anymore, remove.         * alloc.c (copy_lisp_object): No more distinction between         lrecords and lcrecords.         * alloc.c (all_lcrecords): Not needed anymore, remove.         * alloc.c (make_vector_internal): Allocate as lrecord.         * alloc.c (make_bit_vector_internal): Allocate as lrecord.         * alloc.c: Completely remove `lcrecord lists'.         * alloc.c (free_description): Remove.         * alloc.c (lcrecord_list_description): Remove.         * alloc.c (mark_lcrecord_list): Remove.         * alloc.c (make_lcrecord_list): Remove.         * alloc.c (alloc_managed_lcrecord): Remove.         * alloc.c (free_managed_lcrecord): Remove.         * alloc.c (alloc_automanaged_lcrecord): Remove.         * alloc.c (free_lcrecord): Remove.         * alloc.c (lcrecord_stats): Remove.         * alloc.c (tick_lcrecord_stats): Remove.         * alloc.c (disksave_object_finalization_1): Add call to         mc_finalize_for_disksave. Remove the lcrecord way to visit all         objects.         * alloc.c (kkcc_marking): Remove XD_FLAG_FREE_LISP_OBJECT         * alloc.c (sweep_lcrecords_1): Remove.         * alloc.c (common_init_alloc_early): Remove everything related         to lcrecords, remove old lrecord initializations,         * alloc.c (init_lcrecord_lists): Not needed anymore, remove.         * alloc.c (reinit_alloc_early): Remove everything related to         lcrecords.         * alloc.c (init_alloc_once_early): Remove everything related to         lcrecords.         * buffer.c (allocate_buffer): Allocate as lrecord.         * buffer.c (nuke_all_buffer_slots): Use lrecord functions.         * buffer.c (common_init_complex_vars_of_buffer): Allocate as         lrecord.         * buffer.h (struct buffer): Add lrecord_header.         * casetab.c (allocate_case_table): Allocate as lrecord.         * casetab.h (struct Lisp_Case_Table): Add lrecord_header.         * charset.h (struct Lisp_Charset): Add lrecord_header.         * chartab.c (fill_char_table): Use lrecord functions.         * chartab.c (Fmake_char_table): Allocate as lrecord.         * chartab.c (make_char_table_entry): Allocate as lrecord.         * chartab.c (copy_char_table_entry): Allocate as lrecord.         * chartab.c (Fcopy_char_table): Allocate as lrecord.         * chartab.c (put_char_table): Use lrecord functions.         * chartab.h (struct Lisp_Char_Table_Entry): Add lrecord_header.         * chartab.h (struct Lisp_Char_Table): Add lrecord_header.         * console-impl.h (struct console): Add lrecord_header.         * console-msw-impl.h (struct Lisp_Devmode): Add lrecord_header.         * console-msw-impl.h (struct mswindows_dialog_id): Add         lrecord_header.         * console.c (allocate_console): Allocate as lrecord.         * console.c (nuke_all_console_slots): Use lrecord functions.         * console.c (common_init_complex_vars_of_console): Allocate as         lrecord.         * data.c (make_weak_list): Allocate as lrecord.         * data.c (make_weak_box): Allocate as lrecord.         * data.c (make_ephemeron): Allocate as lrecord.         * database.c (struct Lisp_Database): Add lrecord_header.         * database.c (allocate_database): Allocate as lrecord.         * device-impl.h (struct device): Add lrecord_header.         * device-msw.c (allocate_devmode): Allocate as lrecord.         * device.c (nuke_all_device_slots): Use lrecord functions.         * device.c (allocate_device): Allocate as lrecord.         * dialog-msw.c (handle_question_dialog_box): Allocate as lrecord.         * elhash.c (struct Lisp_Hash_Table): Add lrecord_header.         * elhash.c (make_general_lisp_hash_table): Allocate as lrecord.         * elhash.c (Fcopy_hash_table): Allocate as lrecord.         * event-stream.c: Lcrecord lists Vcommand_builder_free_list and         Vtimeout_free_list are no longer needed. Remove.         * event-stream.c (allocate_command_builder): Allocate as lrecord.         * event-stream.c (free_command_builder): Use lrecord functions.         * event-stream.c (event_stream_generate_wakeup): Allocate as         lrecord.         * event-stream.c (event_stream_resignal_wakeup): Use lrecord         functions.         * event-stream.c (event_stream_disable_wakeup): Use lrecord         functions.         * event-stream.c (reinit_vars_of_event_stream): Lcrecord lists         remove.         * events.h (struct Lisp_Timeout): Add lrecord_header.         * events.h (struct command_builder): Add lrecord_header.         * extents-impl.h (struct extent_auxiliary): Add lrecord_header.         * extents-impl.h (struct extent_info): Add lrecord_header.         * extents.c (allocate_extent_auxiliary): Allocate as lrecord.         * extents.c (allocate_extent_info): Allocate as lrecord.         * extents.c (copy_extent): Allocate as lrecord.         * faces.c (allocate_face): Allocate as lrecord.         * faces.h (struct Lisp_Face): Add lrecord_header.         * file-coding.c (allocate_coding_system): Allocate as lrecord.         * file-coding.c (Fcopy_coding_system): Allocate as lrecord.         * file-coding.h (struct Lisp_Coding_System): Add lrecord_header.         * fns.c (Ffillarray): Allocate as lrecord.         * frame-impl.h (struct frame): Add lrecord_header.         * frame.c (nuke_all_frame_slots): Use lrecord functions.         * frame.c (allocate_frame_core): Allocate as lrecord.         * glyphs.c (allocate_image_instance): Allocate as lrecord.         * glyphs.c (Fcolorize_image_instance): Allocate as lrecord.         * glyphs.c (allocate_glyph): Allocate as lrecord.         * glyphs.h (struct Lisp_Image_Instance): Add lrecord_header.         * glyphs.h (struct Lisp_Glyph): Add lrecord_header.         * gui.c (allocate_gui_item): Allocate as lrecord.         * gui.h (struct Lisp_Gui_Item): Add lrecord_header.         * keymap.c (struct Lisp_Keymap): Add lrecord_header.         * keymap.c (make_keymap): Allocate as lrecord.         * lisp.h (struct Lisp_Vector): Add lrecord_header.         * lisp.h (struct Lisp_Bit_Vector): Add lrecord_header.         * lisp.h (struct weak_box): Add lrecord_header.         * lisp.h (struct ephemeron): Add lrecord_header.         * lisp.h (struct weak_list): Add lrecord_header.         * lrecord.h (struct lcrecord_header): Not used, remove.         * lrecord.h (struct free_lcrecord_header): Not used, remove.         * lrecord.h (struct lcrecord_list): Not needed anymore, remove.         * lrecord.h (lcrecord_list): Not needed anymore, remove.         * lrecord.h: (enum data_description_entry_flags): Remove         XD_FLAG_FREE_LISP_OBJECT.         * lstream.c: Lrecord list Vlstream_free_list remove.         * lstream.c (Lstream_new): Allocate as lrecord.         * lstream.c (Lstream_delete): Use lrecod functions.         * lstream.c (reinit_vars_of_lstream): Vlstream_free_list         initialization remove.           * lstream.h (struct lstream): Add lrecord_header.         * emacs.c (main_1): Remove lstream initialization.         * mule-charset.c (make_charset): Allocate as lrecord.         * objects-impl.h (struct Lisp_Color_Instance): Add         lrecord_header.         * objects-impl.h (struct Lisp_Font_Instance): Add lrecord_header.         * objects.c (Fmake_color_instance): Allocate as lrecord.         * objects.c (Fmake_font_instance): Allocate as lrecord.         * objects.c (reinit_vars_of_objects): Allocate as lrecord.         * opaque.c: Lcreord list Vopaque_ptr_list remove.         * opaque.c (make_opaque): Allocate as lrecord.         * opaque.c (make_opaque_ptr): Allocate as lrecord.         * opaque.c (free_opaque_ptr): Use lrecord functions.         * opaque.c (reinit_opaque_early):         * opaque.c (init_opaque_once_early): Vopaque_ptr_list         initialization remove.         * opaque.h (Lisp_Opaque): Add lrecord_header.         * opaque.h (Lisp_Opaque_Ptr): Add lrecord_header.         * emacs.c (main_1): Remove opaque variable initialization.         * print.c (default_object_printer): Use new lrecord_header.         * print.c (print_internal): Use new lrecord_header.         * print.c (debug_p4): Use new lrecord_header.         * process.c (make_process_internal): Allocate as lrecord.         * procimpl.h (struct Lisp_Process): Add lrecord_header.         * rangetab.c (Fmake_range_table): Allocate as lrecord.         * rangetab.c (Fcopy_range_table): Allocate as lrecord.         * rangetab.h (struct Lisp_Range_Table): Add lrecord_header.         * scrollbar.c (create_scrollbar_instance): Allocate as lrecord.         * scrollbar.h (struct scrollbar_instance): Add lrecord_header.         * specifier.c (make_specifier_internal): Allocate as lrecord.         * specifier.h (struct Lisp_Specifier): Add lrecord_header.         * symbols.c:         * symbols.c (Fmake_variable_buffer_local): Allocate as lrecord.         * symbols.c (Fdontusethis_set_symbol_value_handler): Allocate         as lrecord.         * symbols.c (Fdefvaralias): Allocate as lrecord.         * symeval.h (struct symbol_value_magic): Add lrecord_header.         * toolbar.c (update_toolbar_button): Allocate as lrecord.         * toolbar.h (struct toolbar_button): Add lrecord_header.         * tooltalk.c (struct Lisp_Tooltalk_Message): Add lrecord_header.         * tooltalk.c (make_tooltalk_message): Allocate as lrecord.         * tooltalk.c (struct Lisp_Tooltalk_Pattern): Add lrecord_header.         * tooltalk.c (make_tooltalk_pattern): Allocate as lrecord.         * ui-gtk.c (allocate_ffi_data): Allocate as lrecord.         * ui-gtk.c (allocate_emacs_gtk_object_data): Allocate as lrecord.         * ui-gtk.c (allocate_emacs_gtk_boxed_data): Allocate as lrecord.         * ui-gtk.h (structs): Add lrecord_header.         * window-impl.h (struct window): Add lrecord_header.         * window-impl.h (struct window_mirror): Add lrecord_header.         * window.c (allocate_window): Allocate as lrecord.         * window.c (new_window_mirror): Allocate as lrecord.         * window.c (make_dummy_parent): Allocate as lrecord.         MEMORY_USAGE_STATS         * alloc.c (fixed_type_block_overhead): Not used anymore, remove.         * buffer.c (compute_buffer_usage): Get storage size from new         allocator.         * marker.c (compute_buffer_marker_usage): Get storage size from         new allocator.         * mule-charset.c (compute_charset_usage): Get storage size from         new allocator.         * scrollbar-gtk.c (gtk_compute_scrollbar_instance_usage): Get         storage size from new allocator.         * scrollbar-msw.c (mswindows_compute_scrollbar_instance_usage):         Get storage size from new allocator.         * scrollbar-x.c (x_compute_scrollbar_instance_usage): Get         storage size from new allocator.         * scrollbar.c (compute_scrollbar_instance_usage): Get storage         size from new allocator.         * unicode.c (compute_from_unicode_table_size_1): Get storage         size from new allocator.         * unicode.c (compute_to_unicode_table_size_1): Get storage size         from new allocator.         * window.c (compute_window_mirror_usage): Get storage size from         new allocator.         * window.c (compute_window_usage): Get storage size from new         allocator.         MC_ALLOC_TYPE_STATS:         * alloc.c (alloc_lrecord): Bump lrecord count.         * alloc.c (noseeum_alloc_lrecord): Bump lrecord count.         * alloc.c (struct lrecord_stats): Storage for counts.         * alloc.c (init_lrecord_stats): Zero statistics.         * alloc.c (inc_lrecord_stats): Increase the statistic.         * alloc.c (dec_lrecord_stats): Decrease the statistic.         * alloc.c (gc_plist_hack): Used to print the information.         * alloc.c (Fgarbage_collect): Return the collected information.         * mc-alloc.c (remove_cell): Decrease lrecord count.         * mc-alloc.h: Set flag MC_ALLOC_TYPE_STATS.         * emacs.c (main_1): Init lrecord statistics.         * lrecord.h: Add prototypes for *_lrecord_stats.         Strings:         * alloc.c (Fmake_string): Initialize ascii_begin to zero.         * alloc.c (gc_count_num_short_string_in_use): Remove.         * alloc.c (gc_count_string_total_size): Remove.         * alloc.c (gc_count_short_string_total_size): Remove.         * alloc.c (debug_string_purity): Remove.         * alloc.c (debug_string_purity_print): Remove.         * alloc.c (sweep_strings): Remove.                  Remove static C-readonly Lisp objects:         * alloc.c (c_readonly): Not needed anymore, remove.         * alloc.c (GC_CHECK_LHEADER_INVARIANTS): Remove some obsolete         lheader invariants assertions.         * buffer.c (DEFVAR_BUFFER_LOCAL_1): Allocate dynamically.         * console.c (DEFVAR_CONSOLE_LOCAL_1): Allocate dynamically.         * gpmevent.c: Indirection via MC_ALLOC_Freceive_gpm_event.         * gpmevent.c (Fgpm_enable): Allocate dynamically.         * gpmevent.c (syms_of_gpmevent): Allocate dynamically.         * lisp.h (C_READONLY): Not needed anymore, remove.         * lisp.h (DEFUN): Allocate dynamically.         * lrecord.h (C_READONLY_RECORD_HEADER_P): Not needed anymore,         remove.         * lrecord.h (SET_C_READONLY_RECORD_HEADER): Not needed anymore,         remove.         * symbols.c (guts_of_unbound_marker):         * symeval.h (defsubr): Allocate dynamically.         * symeval.h (DEFSUBR_MACRO): Allocate dynamically.         * symeval.h (DEFVAR_ SYMVAL_FWD): Allocate dynamically.         * tests.c (TESTS_DEFSUBR): Allocate dynamically.         Definition of mcpro:         * lisp.h: Add mcpro prototypes.         * alloc.c (common_init_alloc_early): Add initialization for         mcpros.         * alloc.c (mcpro_description_1): New.         * alloc.c (mcpro_description): New.         * alloc.c (mcpros_description_1): New.         * alloc.c (mcpros_description): New.         * alloc.c (mcpro_one_name_description_1): New.         * alloc.c (mcpro_one_name_description): New.         * alloc.c (mcpro_names_description_1): New.         * alloc.c (mcpro_names_description): New.         * alloc.c (mcpros): New.         * alloc.c (mcpro_names): New.         * alloc.c (mcpro_1): New.         * alloc.c (mc_pro): New.         * alloc.c (garbage_collect_1): Add mcpros to root set.         Usage of mcpro:         * alloc.c (make_string_nocopy): Add string to root set.         * symbols.c (init_symbols_once_early): Add Qunbound to root set.         Changes to the Portable Dumper:                  * alloc.c (FREE_OR_REALLOC_BEGIN): Since dumped objects can be         freed with the new allocator, remove assertion for !DUMPEDP.         * dumper.c: Adjust comments, increase PDUMP_HASHSIZE.         * dumper.c (pdump_make_hash): Shift address only 2 bytes, to         avoid collisions.         * dumper.c (pdump_objects_unmark): No more mark bits within         the object, remove.         * dumper.c (mc_addr_elt): New. Element data structure for mc         hash table.         * dumper.c (pdump_mc_hash): New hash table: `lookup table'.         * dumper.c (pdump_get_mc_addr): New. Lookup for hash table.         * dumper.c (pdump_get_indirect_mc_addr): New. Lookup for         convertibles.         * dumper.c (pdump_put_mc_addr): New. Putter for hash table.         * dumper.c (pdump_dump_mc_data): New. Writes the table for         relocation at load time to the dump file.         * dumper.c (pdump_scan_lisp_objects_by_alignment): New.         Visits all dumped Lisp objects.         * dumper.c (pdump_scan_non_lisp_objects_by_alignment): New.         Visits all other dumped objects.         * dumper.c (pdump_reloc_one_mc): New. Updates all pointers         of an object by using the hash table pdump_mc_hash.         * dumper.c (pdump_reloc_one): Replaced by pdump_reloc_one_mc.         * dumper.c (pdump): Change the structure of the dump file, add         the mc post dump relocation table to dump file.         * dumper.c (pdump_load_finish): Hand all dumped objects to the         new allocator and use the mc post dump relocation table for         relocating the dumped objects at dump file load time, free not         longer used data structures.         * dumper.c (pdump_load): Free the dump file.         * dumper.h: Remove pdump_objects_unmark.         * lrecord.h (DUMPEDP): Dumped objects can be freed, remove.              DUMP_IN_EXEC:         * Makefile.in.in: Linking for and with dump in executable only if         DUMP_IN_EXEC is defined.         * config.h.in: Add new flag `DUMP_IN_EXEC'         * emacs.c: Condition dump-data.h on DUMP_IN_EXEC.         * emacs.c (main_1): Flag `-si' only works if dump image is         written into executable.         Miscellanious         * lrecord.h (enum lrecord_type): Added numbers to all types,         very handy for debugging.         * xemacs.def.in.in: Add mc-alloc functions to make them visible         to the modules.
author crestani
date Fri, 08 Apr 2005 23:11:35 +0000
parents 45609533aa75
children 7e34c186ba93
line wrap: on
line source

2005-04-01  Marcus Crestani  <crestani@xemacs.org>

	The new allocator.

	DUMP_IN_EXEC:
	
	* Makefile.in.in: Only compile insert-data-in-exec if 
        DUMP_IN_EXEC is defined.

2005-03-25  Andrey Slusar  <anrays@gmail.com>
 
        * fakemail.c (CURRENT_USER): Define it if FreeBSD version is >= 
        400000.  Also, when FreeBSD version is >= 400000 geteuid returns 
        uid_t instead of unsigned short. 

2005-03-11  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.20 "cilantro" is released.

2005-03-07  Malcolm Purvis  <malcolmp@xemacs.org>

	* config.values.in:
	* config.values.sh (FileContents): Different regex for autoconf
	2.59.

2004-12-19  Stephen J. Turnbull  <stephen@xemacs.org>

	* make-docfile.c (write_c_args): Handle UNUSED, USED_IF macros.
	(scan_c_file): Handle nested parens in DEFUN argument lists.

2005-02-18  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.19 "chives" is released.

2005-01-29  Vin Shelton  <acs@xemacs.org>

	* movemail.c (popmail): Pass error string as format parameter
	instead of as part of format string. Security fixes for
	CAN-2005-0100.

2005-02-03  Jerry James  <james@xemacs.org>

	* etags.c: Update to author version 17.11.

2005-01-26  Ben Wing  <ben@xemacs.org>

	* fakemail.c (main):  Add args to fix warning.

2005-01-25  Ben Wing  <ben@xemacs.org>

	* insert-data-in-exec.c (main):
	Need to open everything as binary.

2004-12-06  Ben Wing  <ben@xemacs.org>

	* i.c (pump):
	Undo change of 2003-03-06.  It causes truncation of output at the end.

2004-12-06  Ben Wing  <ben@xemacs.org>

	* gnuclient.c:
	* gnuclient.c (get_current_working_directory):
	* gnuclient.c (filename_expand):
	* gnuclient.c (main):
	Use QXE_PATH_MAX.

2004-12-05  Ben Wing  <ben@xemacs.org>

	* make-docfile.c (main):
	* make-docfile.c (scan_c_file):
	Use QXE_PATH_MAX.

2004-11-08  Stephen J. Turnbull  <stephen@xemacs.org>

	* ellcc.h.in: Use XE_CFLAGS, not CFLAGS.

2004-10-14  Ben Wing  <ben@xemacs.org>

	* digest-doc.c (main):
	* make-dump-id.c (main):
	* profile.c:
	* profile.c (main):
	* sorted-doc.c (main):
	Add proper decls for main().

	* make-msgfile.c:
	Document that this is old junk.
	Move proposal to text.c.
	
	* make-msgfile.lex:
	Move proposal to text.c.

	* make-mswin-unicode.pl:
	Convert error-generating code so that the entire message will
	be seen as a single unrecognized token.
	

2004-10-22  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.18 "chestnut" is released.

2004-10-07  Jerry James  <james@xemacs.org>

	* etags.c: Update to author version 17.6.

2004-09-14  Jerry James  <james@xemacs.org>

	* digest-doc.c (main): Remove unused argc and argv.
	* fakemail.c (main): Ditto.
	* make-dump-id.c (main): Ditto.
	* profile.c (main): Ditto.
	* sorted-doc.c (main): Ditto.
	* gnuclient.c (tell_emacs_to_resume): Mark unused parameters.
	* gnuserv.c (main): Ditto.
	* make-docfile.c (write_c_args): Ditto.
	* pop.c (socket_connection): Ditto.

2004-08-10  Jerry James  <james@xemacs.org>

	* etags.c: Update to author version 16.56.

2004-04-17  Olivier Galibert  <galibert@pobox.com>

	* insert-data-in-exec.c (main): Fix error message.

2003-12-07  Olivier Galibert  <galibert@pobox.com>

	* Makefile.in.in (insert-data-in-exec): Added target.

	* insert-data-in-exec.c: Added.

2004-03-22  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.17 "chayote" is released.

2004-01-21  Jerry James  <james@xemacs.org>

	* Makefile.in.in (mmencode): Pass $(ldflags) to the compiler.
	* Makefile.in.in (make-path): Ditto.

2003-10-13  Jerry James  <james@xemacs.org>

	* ellcc.c: Remove attribute definitions, include new compiler.h
	instead, and change existing uses to match new definitions.

2003-09-26  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.16 "celeriac" is released.

2003-09-21  Jerry James  <james@xemacs.org>

	* ellcc.c (do_init_mode): Do not mangle external symbols in the
	generated doc file with C++ so that emodules.c can find them.

2003-09-15  Jerry James  <james@xemacs.org>

	* make-dump-id.c (main): Output separate declaration and
	definition for dump_id.

2003-09-03  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.15 "celery" is released.

2003-08-29  Nickolay Pakoulin  <npak@ispras.ru>

	* make-dump-id.c (main): Set "C" linking rule for dump_id

2003-06-30  Andrew Begel  <abegel@CS.Berkeley.EDU>

	* make-docfile.c (write_c_args): Escape newlines that arise in the
	C argument list, and comment on synch with Emacs.

2003-06-01  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.14 "cassava" is released.

2003-05-29  Jerry James  <james@xemacs.org>

	* ellcc.c: Rationalize and repair use of GCC function attributes.

2003-05-10  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.13 "cauliflower" is released.

2003-04-24  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.12 "carrot" is released.

2003-02-09  Ville Skyttä  <scop@xemacs.org>

	* config.values.in (pkgdir): Remove (unused).

2003-03-06  Ben Wing  <ben@xemacs.org>

	* i.c:
	* i.c (pump):
	Sleep between calls to check for I/O, since these calls are non-blocking.

2003-02-16  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.11 "cabbage" is released.

2003-01-14  Jerry James  <james@xemacs.org>

	* ellcc.c (do_compile_mode): Search XEmacs directories first for
	include files.  Thanks to Raymond Toy.

2003-01-28  Steve Youngs  <youngs@xemacs.org>

	* rcs2log: Synch to GNU version.

2003-01-04  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.10 "burdock" is released.

2002-11-27  Ben Wing  <ben@xemacs.org>

	* .cvsignore:
	Add .idb, .ilk for MS Windows VC++.

2002-11-17  Ben Wing  <ben@xemacs.org>

	* ellcc.c (do_init_mode):
	Use full prototypes.

	* ellcc.h.in:
	Use the correct user-specified compiler.
	
	* make-docfile.c:
	* make-docfile.c (read_c_string):
	* make-docfile.c (scan_c_file):
	Fix shadowing warnings.  NOTE: This was already fixed
	awhile ago, but reverted by Jerry.  Please be careful.

2002-08-08  Jerry James  <james@xemacs.org>

	* config.values.in: Regenerate.
	* ellcc.c: A thorough cleanup to eliminate potential buffer
	overruns and null pointer dereferences, make some global variables
	local, add braces for clarity, etc., using hints supplied by
	splint.
	* ellcc.c (EXEC_GROW_SIZE): New constant for dynamic allocation.
	* ellcc.c (xrealloc): New function.
	* ellcc.c (xstrdup): New function.
	* ellcc.c (fatal): Use varargs for flexibility.
	* ellcc.c (add_string): New function for abstracting the addition
	of a string to the exec_argv array.
	* ellcc.c (add_to_argv): Use add_string.  Improve whitespace
	handling.  Recode finite state machine as a clearer while loop.
	* ellcc.c (do_compile_mode): Use new functions.
	* ellcc.c (do_link_mode): Ditto.
	* ellcc.c (do_init_mode): Ditto.  Default to in-source
	make-docfile.

2002-08-30  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.9 "brussels sprouts" is released.

2002-08-21  Jerry James  <james@xemacs.org>

	* gnuserv.h: Revert previous patch.  Include syssignal.h instead
	of signal.h.
	* tcp.c: Include config.h, and substitute syssignal.h for
	signal.h.

2002-08-02  Jerry James  <james@xemacs.org>

	* gnuserv.h: Include signal.h early to define NSIG before config.h
	is included.

2002-07-27  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.8 "broccoli" is released.

2002-07-15  Jerry James  <james@xemacs.org>

	* make-docfile.c: Change whitespace and organization to reduce the
	size of the diff against FSF Emacs sources and synch to Emacs 21.2.
	Remove unused DO_REALLOC.
	Mark XEmacs changes and additions more clearly.
	Reintroduce previously deleted Emacs code inside #if 0 ... #endif.
	* make-docfile.c (next_extra_elc): Replace goto with do-while.
	* make-docfile.c (main): Put XEmacs-only args in one place.
	* make-docfile.c (write_c_args): Change buff to buf to match
	Emacs.  Replace pointer arithmetic with simpler array syntax.
	* make-docfile.c (scan_c_file): Note that DEFSIMPLE and DEFPRED no
	longer exist.  Correct the "name too long" test (off by one).
	Die with message if a DEFUN has no docstring instead of hanging.
	* make-docfile.c (scan_lisp_file): Introduce while loops used in
	Emacs sources to skip consecutive blank lines.

2002-07-14  Adrian Aichner  <adrian@xemacs.org>

	* etags.c: It's XEmacs, not Xemacs.

2002-07-02  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.7 "broccoflower" is released.

2002-05-29  Greg Steuck  <greg-xemacs-patches@nest.cx>

	* gnuclient.c: Makes it possible again to #undef
	INTERNET_DOMAIN_SOCKETS in lib-src/gnuserv.h and get a functional
	gnuserv which is only accessible through UNIX_DOMAIN_SOCKETS.

2002-05-28  Ben Wing  <ben@xemacs.org>

	* make-docfile.c (scan_c_file):
	* make-docfile.c (scan_lisp_file):
	Fix places where we forget to check for EOF.

2002-05-05  Ben Wing  <ben@xemacs.org>

	* i.c:
	* i.c (skip_executable_name):
	* i.c (main):
	Create an inheritable event and pass it on to XEmacs, so that ^C
	can be handled properly.  Intercept ^C and signal the event.
	"Stop Build" in VC++ now works.

2002-04-14  Ben Wing  <ben@xemacs.org>

	* make-docfile.c:
	* make-docfile.c (next_extra_elc):
	* make-docfile.c (again): Removed.
	* make-docfile.c (main):
	* make-docfile.c (getc_iso2022):
	* make-docfile.c (MDGET):
	* make-docfile.c (read_c_string):
	* make-docfile.c (write_c_args):
	* make-docfile.c (scan_c_file):
	* make-docfile.c (read_lisp_symbol):
	* make-docfile.c (scan_lisp_file):
	Add basic support for handling ISO 2022 doc strings -- we parse
	the basic charset designation sequences so we know whether we're
	in ASCII and have to pay attention to end quotes and such.
	
	Reformat code according to coding standards.

2002-04-05  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.6 "bok choi" is released.

2002-03-31  Ben Wing  <ben@xemacs.org>

	* make-mswin-unicode.pl: Don't be fucked up by CRLF.  Output code
	to force errors when nonintercepted Windows calls issued.

2002-03-14  Jonathan Harris  <jhar@tardis.ed.ac.uk>

        * make-mswin-unicode.pl: Pick up location of include files from
          MSVCDIR environment variable.
          Add --includedir command-line option.
          Remove 'dir' command.

2002-03-15  Ben Wing  <ben@xemacs.org>

	* Makefile.in.in (blessmail):
	* Makefile.in.in (maybe-blessmail):
	Use -no-packages to avoid problems with package files shadowing
	core files (e.g. unicode.el in mule-ucs).

2002-03-12  Ben Wing  <ben@xemacs.org>

	* The Great Mule Merge: placeholder.

2002-03-05  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.5 "beets" is released.

2002-01-08  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.4 "bamboo" is released.

2001-12-24  Yoshiki Hayashi  <yoshiki@xemacs.org>

	* etags.c: Define __P if not already defined.

2001-12-19  Yoshiki Hayashi  <yoshiki@xemacs.org>

	* Makefile.in.in (etags_args): Define EMACS_NAME to XEmacs.

	* etags.c: Sync with pot version 14.28.
	Additional change for XEmacs to define PTR macro.

	2001-12-12  Francesco Potorti`  <pot@gnu.org>

	* etags.c (PHP_functions): New function by Diez B. Roggisch,
	heavily adapted by me, for parsing PHP.
	(LOOKING_AT): New macro.
	(Perl_functions, Python_functions, PHP_functions)
	(Scheme_functions, Texinfo_nodes): Use it.
	(Perl_functions): Use strneq.
	(prolog_pred): Renamed to prolog_pr.
	(prolog_pr): Recognise Prolog rules (thanks to Geert Kloosterman)
	in addition to predicates.
	[ETAGS_REGEXPS] [!HAVE_CONFIG_H] [__CYGWIN__]: Prevent
	unmodified compile, as Cygwin's regex.h is incompatible with us
	(thanks to Markus Hoenicka).
	[!HAVE_CONFIG_H] [!__STDC__]: #define const as the empty string.

2001-09-07  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.3 "asparagus" is released.

2001-06-24  Ben Wing  <ben@xemacs.org>

	* gnuserv.c (permitted):
	* gnuserv.c (setup_table):
	* gnuslib.c (connect_to_internet_server):
	* make-docfile.c (scan_c_file):
	* mmencode.c (fromqp):
	* movemail.c:
	* movemail.c (main):
	* movemail.c (xmalloc):
	* ootags.c (prolog_pred):
	* ootags.c (erlang_func):
	* yow.c (yow):
	Fix unsigned warnings.  See src/ChangeLog for details.

2001-07-28  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.2 "artichoke" is released.

2001-06-10  Ben Wing  <ben@xemacs.org>

	* cvtmail.c:
	* fakemail.c:
	* gnuserv.c:
	* gnuserv.c (handle_ipc_request):
	* gnuserv.h:
	* gnuslib.c:
	* make-msgfile.c:
	* make-path.c:
	* pop.c:
	* pop.h:
	* profile.c:
	* tcp.c:
	Rename 'GNU Emacs' to XEmacs in the copyright.
	Fix comments in similar ways.

	* digest-doc.c (main):
	* sorted-doc.c (main):
	Fix program and author name to reflect XEmacs.

2001-05-06  Karl M. Hegbloom  <karlheg@hegbloom.net>

	* movemail.c (lock_dot): Use mkstemp if available

2001-05-23  Ben Wing  <ben@xemacs.org>

	* pop.c (socket_connection):
	Remove BROKEN_CYGWIN.

2001-05-17  Stephen J. Turnbull  <stephen@xemacs.org>

	* config.values.sh:  lisp/utils?/config.el -> lisp/config.el.

2001-05-12  Ben Wing  <ben@xemacs.org>

	* etags.c:
	* etags.c (print_help):
	* etags.c (sym_type):
	* etags.c (TOTAL_KEYWORDS):
	* etags.c (hash):
	* etags.c (in_word_set):
	* etags.c (consider_token):
	* etags.c (C_entries):
	* etags.c (add_regex):
	new version from Francesco.

2001-05-09  Ben Wing  <ben@xemacs.org>

	* etags.c (add_regex):
	temporary fix to avoid crashes with new regex code.

2001-05-09  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.5.1 "anise" is released.

2001-04-29  Ben Wing  <ben@xemacs.org>

	* gnuclient.c (filename_expand): Warning fix.

2001-04-20  Ben Wing  <ben@xemacs.org>

	* .cvsignore: Added stuff for Windows.

2001-04-18  Martin Buchholz  <martin@xemacs.org>

	* XEmacs 21.5.0 "alfalfa" is released.

2000-08-01  Jon Schewe  <jpschewe@eggplant.mtu.net>

	* gnuclient.c (filename_expand): Let Cygwin convert Windows path
	to Unix.

2001-03-23  Stephen J. Turnbull  <stephen@xemacs.org>

	* gnuserv.h: Document TMPDIR lossage if client/server values differ.

2001-03-21  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.46 "Urania" is released.

2001-03-19  Andy Piper  <andy@xemacs.org>

	* installexe.sh: use bash by default.

2001-03-09  William M. Perry  <wmperry@aventail.com>

	* gnuclient.c: The Great GTK Merge.

2000-08-10  Ben Wing  <ben@xemacs.org>

	* update-elc.sh: deleted (retroactively).  replaced by update-elc-2.el,
	which does the same thing but in a platform-independent way.

2001-02-23  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.45 "Thelxepeia" is released.

2001-02-11  Martin Buchholz  <martin@xemacs.org>

	* Makefile.in.in: Cleanup.
	Fixes bug: all must depend on make-dump-id.
	Don't install make-path; only used at build time.
	Avoid duplicating file lists for maintainability.
	(PUBLIC_INSTALLABLE_SCRIPTS): More logical naming.
	(PUBLIC_INSTALLABLE_EXES): Likewise.
	(PUBLIC_INSTALLABLES): Likewise.
	(PRIVATE_INSTALLABLE_SCRIPTS): More logical naming.
	(PRIVATE_INSTALLABLE_EXES): Likewise.
	(PRIVATE_INSTALLABLES): Likewise.
	(SCRIPTS): Likewise.
	(EXES): New.
	(PROGS): New.
	(SOURCES): Remove.
	(BUILD_UTILITIES): New.  Non-installed utilities.
	(INSTALL_GNUSERV): New.
	(unlock): Remove obsolete target.
	(relock): Remove obsolete target.
	(aixcc.c): Remove.  Obsolete.
	* aixcc.lex:  Remove.  Obsolete.

2001-02-12  Martin Buchholz  <martin@xemacs.org>

	* make-dump-id.c (main): No longer #include dump-id.h.

2001-02-08  Martin Buchholz  <martin@xemacs.org>

	* gnuserv.c (permitted): Compiler warning fixes.

2001-02-08  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.44 "Thalia" is released.

2001-01-31  Francesco Potorti`  <pot@gnu.org>

	* etags.c: [NDEBUG] #undef assert and #define it as ((void)0), for
	the sake of some buggy assert.h (e.g. in MinGW and sunos4 pcc).
	(C_entries): Tag token renamed to still_in_token because sunos4
	pcc wants to expand it as the token() macro even though it has no
	arguments.

2001-01-30  Francesco Potorti`  <pot@gnu.org>

	* etags.c: [WIN32-NATIVE]: #undef MSDOS, #undef WINDOWSNT and
	#define it for the sake of XEmacs.
	[WINDOWSNT]: #undef HAVE_NTGUI even if built without
	HAVE_CONFIG_H.  This change only affects a standalone etags.
	[WINDOWSNT]: #undef DOS_NT and #define it even if built with
	HAVE_CONFIG_H.  This change does nothing in Emacs, as DOS_NT is
	always defined when HAVE_CONFIG_H and WINDOWS are both defined.
	[!HAVE_UNISTD_H]: use defined(WINDOWSNT) instead of the bare
	WINDOWSNT, as this is the correct way to use it.

2001-01-28  Francesco Potorti`  <pot@gnu.org>

	* etags.c: Be capable to parse nested struct-like structures.
	(structdef, structtag): Struct state machine revisited.
	(struct tok): Revisited.
	(cstack, nestlev, instruct): New struct and macros.
	(pushclass_above, popclass_above, write_classname): New functions
	for dealing with nested class names, inspired by Mykola Dzyuba.
	(consider_token, make_C_tag, C_entries): Many changes for dealing
	with arbitrarily nested structures.
	(etags_getcwd): #if MSDOS, not #ifdef MSDOS!
	(C_entries): Consider templates in C++.
	(sym_type): New constant st_C_class for detecting "class" also in
	C mode.
	(C_AUTO): New macro for automatic detection of C++.
	(consider_token): Automatic set C++ mode.
	(C_entries): New security check for yacc.
	(print_language_names, print_help): Mention the autodetect
	feature, do not show help for the -C option, now mostly	useless.
	(C_entries): Tag C++ forward declarations if --declarations.
	(C_entries): Don't be fooled by things like XDEFUN.
	(consider_token): Discard asm pseudo function.

2001-01-25  Francesco Potorti`  <pot@gnu.org>

	* etags.c (struct tok): Renamed from struct token.
	(token): Renamed from tok.
	(structtype): Make it a local variable.
	[DEBUG]: Use assert.
	(xrnew): Change the synopsis.
	(typedefs_or_cplusplus): Renamed from typedefs_and_cplusplus.
	(grow_linebuffer): Don't call xrnew when not needed.
	(token): buffer renamed to line.
	(C_entries): Three calls to inibuffer moved here from main.
	(C_entries): Removed all references to var methodlen, delete it.
	(linebuffer_setlen): Was grow_buffer, now also sets len.
	(consider_token, C_entries, Pascal_functions): Use it.
	(C_entries): Preventing problems relative to extern "C".
	(C_entries): Can tag more than one variable or func separated by
	comma when --declarations is used.
	(C_entries): More accurate tagging of members and declarations.
	(yacc_rules): Was global, made local to C_entries.
	(next_token_is_func): Removed.
	(fvdef): New constants fdefunkey, fdefunname.
	(consider_token, C_entries): Use them.
	(C_entries): Build proper lisp names for Emacs DEFUNs.

2001-01-15  Francesco Potorti`  <pot@gnu.org>

	* etags.c (print_language_names): Print filenames in addition to
	suffixes.

2001-01-12  Francesco Potorti`  <pot@gnu.org>

	* etags.c (get_language_from_langname): Renamed from
	get_language_from_name.
	(get_language_from_filename): Renamed from
	get_language_from_suffix.  Now first looks for the complete file
	name.
	(language): New member char **filenames.
	(Makefile_filenames): List of possible filenames for makefiles.
	(lang_names): Added a NULL member for every entry, added an entry
	for makefiles.
	(Makefile_targets): New function, inspired by Assar Westerlund
	<assar@sics.se>.

2000-11-07  Francesco Potorti`  <pot@gnu.org>

	* etags.c (Texinfo_nodes): Renamed from Texinfo_fuctions and made
	it conformant to the style of the rest of the code.

2000-02-10  Francesco Potorti`  <pot@gnu.org>

	* etags.c (iswhite): Redefined not to consider '\0' as white
	space, and use it throughout in place of isspace, thus preventing a
	potential signed char to int conversion problem.
	(MSDOS): #undefine befere redefining

2000-02-04  Francesco Potorti`  <pot@gnu.org>

	* etags.c (many functions): Add prototypes.

2000-01-31  Francesco Potorti`  <pot@gnu.org>

	* etags.c [MSDOS]: Set MSDOS to 1 if #defined, 0 otherwise.
	(get_compressor_from_suffix, process_file): Use MSDOS in if clause.
	(etags_strchr, etags_strrchr): Use const char * and int as arguments.
	(getenv, getcwd): Only declare them if necessary.
	(EMACS_NAME): New constant macro.
	(print_version): Use it.
	(P_) [__STDC__]: Macro for defining function prototypes.

2001-02-06  Martin Buchholz  <martin@xemacs.org>

	* gnuclient.c:
	* gnuserv.c:
	* gnuslib.c:
	* pop.c:
	Remove use of BSD-specific types.
	s/u_(char|short|int_long)/unsigned $1/g
	Remove pointless casts.

2001-01-28  Martin Buchholz  <martin@xemacs.org>

	* gnuclient.c (get_current_working_directory): Use HAVE_GETCWD.
	warning: getwd() possibly used unsafely, consider using getcwd().

2001-01-26  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.43 "Terspichore" is released.

2001-01-23  Jan Vroonhof  <jan@xemacs.org>

	* gnuserv.c: Add version number to object file.

2001-01-20  Klaus Frank <klausf@i3.informatik.rwth-aachen.de>

	* gnuserv.c (permitted): Completed the checks of the authentication
	data length, replaced memcmp() by constant-time comparision.

2001-01-20  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.42 "Poseidon" is released.

2001-01-17  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.41 "Polyhymnia" is released.

2001-01-08  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.40 is released.

2000-12-31  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.39 is released.

2000-12-05  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.38 is released.

2000-11-13  Yoshiki Hayashi  <yoshiki@xemacs.org>

	* Makefile.in.in: Define emacs iff it's necessary.

2000-11-14  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.37 is released.

2000-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>

	* make-po.c (BUFSIZE): Increase value to 32768.

2000-10-04  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.36 is released.

2000-09-30  Martin Buchholz  <martin@xemacs.org>

	* gnuserv.c (main): Warning removal.

2000-09-27  Martin Buchholz  <martin@xemacs.org>

	* ellcc.c: Make global variables static.  Avoids warnings on AIX.

	* fakemail.c (make_file_preface): Use standard type time_t.
	Actually check that the 25th char returned from ctime is '\n'.

2000-09-19  Martin Buchholz  <martin@xemacs.org>

	* *: Spelling mega-patch

2000-09-12  Martin Buchholz  <martin@xemacs.org>

	* gnuclient.c (main):
	* hexl.c (usage):
	Use `Usage', not `usage', in Usage messages.

2000-07-15  Ben Wing  <ben@xemacs.org>

	* etags.c (add_regex): added commented out code for use figuring
	out Windows quoting problems.
	* hexl.c (main): fixed warnings about possible used uninitialized.

2000-07-19  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.35 is released.

2000-07-12  Martin Buchholz  <martin@xemacs.org>

	* gnuserv.c:
	(handle_internet_request): 
	(handle_unix_request): 
	(internet_init): 
	Use socklen_t instead of int or size_t.

2000-07-11  Martin Buchholz  <martin@xemacs.org>

	* hexl.c (usage): Use full ANSI C prototypes.

2000-07-05  Craig Lanning  <lanning@scra.org>

	* Makefile.in.in (INSTALL_DATA):
	* Makefile.in.in (UTILITIES):
	* Makefile.in.in (GETOPTDEPS):
	* Makefile.in.in (i):
	mingw support: don't try to build gnuclient, add
        support for building and installing minitar

2000-06-10  Ben Wing  <ben@xemacs.org>

	* Makefile.in.in (INSTALLABLES_BASE):
	* Makefile.in.in (ootags_args):
	* Makefile.in.in (yow):
	Build i.exe.
	Don't build run*.exe.
	
	* b2m.c:
	* b2m.c (main):
	* ellcc.c (main):
	* etags.c:
	* etags.c (main):
	* etags.c (get_compressor_from_suffix):
	* etags.c (process_file):
	* etags.c (readline_internal):
	* etags.c (etags_getcwd):
	* etags.c (relative_filename):
	* etags.c (absolute_filename):
	* etags.c (filename_is_absolute):
	* etags.c (canonicalize_filename):
	* fakemail.c:
	* fakemail.c (make_file_preface):
	* getopt.c:
	* getopt.h:
	* gnuclient.c:
	* gnuclient.c (filename_expand):
	* gnuserv.h:
	* gnuserv.h (PATCHLEVEL):
	* hexl.c:
	* hexl.c (main):
	* make-docfile.c:
	* make-docfile.c (APPEND_BINARY):
	* make-docfile.c (main):
	* make-dump-id.c:
	* mmencode.c:
	* mmencode.c (fromqp):
	* mmencode.c (main):
	* movemail.c:
	* movemail.c (main):
	* movemail.c (popmail):
	* ootags.c:
	* ootags.c (main):
	* ootags.c (readline_internal):
	* ootags.c (etags_getcwd):
	* ootags.c (absolute_filename):
	* ootags.c (filename_is_absolute):
	* ootags.c (canonicalize_filename):
	* pop.c:
	* pop.c (DONT_ENCAPSULATE):
	* pop.c (pop_open):
	* pop.c (socket_connection):
	* pop.c (pop_trash):
	* profile.c (gettimeofday):
	* wakeup.c:
	* yow.c (rootrelativepath):
	Remove MSDOS support, converting to WIN32_NATIVE where necessary.
	WINDOWSNT -> WIN32_NATIVE.
	__CYGWIN32__ -> CYGWIN.
	DOS_NT -> WIN32_NATIVE.
	Remove unused NO_SHORTNAMES.
	Changes for removed nt\inc.

2000-06-07  Ben Wing  <ben@xemacs.org>

	* run.c, run.h, run.rc: Removed.  We no longer need these for
	building runxemacs.exe, and it's questionable at best whether
	rungnuclient.exe was ever used or is even needed.  The correct
	solution is just to make gnuclient.exe a windows program and
	use the gnuattach script to run 'i gnuclient.exe'.  Not that
	gnuclient currently works under Windows native in any case.

2000-05-28  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.34 is released.

2000-05-11  Ben Wing  <ben@xemacs.org>

	* i.c (get_command): fix unused var warning.
	
	* make-docfile.c (MDGET):
	* make-docfile.c (read_c_string):
	rewrite and reindent -- handle closing doc string comment that's
	not at beg of line.

2000-05-01  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.33 is released.

2000-04-19  Martin Buchholz  <martin@xemacs.org>

	* gnuclient.c (initialize_signals): Always use full ANSI prototypes.

2000-04-06  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>

	* i.c: New file, source for the i utility.

2000-03-22  Mike Alexander  <mta@arbortext.com>

	* make-dump-id.c (gettimeofday): new (Windows only)

2000-03-20  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.32 is released.

2000-03-20  Martin Buchholz  <martin@xemacs.org>

	* make-dump-id.c: Use config.h and systime.h for portability.

2000-02-20  Olivier Galibert  <galibert@pobox.com>

	* make-dump-id.c: Added.

	* Makefile.in.in: Add support for make-dump-id.

2000-03-12  Ben Wing  <ben@xemacs.org>

        * etags.c (canonicalize_filename): fixed a problem with gratuitous
        capitalization of file names under MS Windows. 

2000-02-23  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.31 is released.

2000-02-21  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.30 is released.

2000-02-16  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.29 is released.

2000-02-13  Martin Buchholz  <martin@xemacs.org>

	* etags.c: Upgrade to version 13.44.
	Only added (unsigned char) casts to calls like isspace (*cp).

2000-02-07  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.28 is released.

2000-02-06  Martin Buchholz  <martin@xemacs.org>

	* getopt.h:
	* fakemail.c:
	* gnuslib.c:
	* sorted-doc.c:
	* yow.c:
	* cvtmail.c:
	* movemail.c:
	* gnuclient.c:
	ANSIfy. Use coding standards for function definitions.
	Make C++-compilable. Modified from patch by Zack Weinberg.

2000-01-26  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>

	* hexl.c: Removed MSDOS code; set binary I/O flags for NT.

2000-01-18  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.27 is released.

2000-01-18  Martin Buchholz  <martin@xemacs.org>

	* ootags.c: Ansify.
	* etags.c:
	* getopt.c:
	* cvtmail.c:
	Remove declarations of ANSI errno, getenv(), malloc().

2000-01-13  Martin Buchholz  <martin@xemacs.org>

	* movemail.c (main): 
	* make-docfile.c (write_c_args): 
	Simple compiler warning fixes.

2000-01-09  Martin Buchholz  <martin@xemacs.org>

	* *.[ch]: Change <../src/config.h> to <config.h>
	* ellcc.c: Always use <...> to #include files not in `.'
	* Makefile.in.in: Use safer -I paths.
	Use $(top_srcdir) instead of $(srcdir)/../src
	Add warning comment.

2000-01-08  Martin Buchholz  <martin@xemacs.org>

	* movemail.c: Warning removal.

2000-01-06  Norbert Koch  <norbert@s.netic.de>

	* movemail.c: Typo fix.

2000-01-03  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>

	* movemail.c: Overhaul of the locking code.

2000-01-03  Martin Buchholz  <martin@xemacs.org>

	* etags.c (etags_strrchr): Ansify.
	(etags_strchr): Ansify.
	(get_compressor_from_suffix): Remove warning, make code cleaner.

1999-12-31  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.26 is released.

1999-12-24  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.25 is released.

1999-12-21  Martin Buchholz  <martin@xemacs.org>

	* fakemail.c (cuserid): ((expr)) ==> (expr)

	* fakemail.c (xmalloc): ANSIfy.

1999-12-14  Martin Buchholz  <martin@xemacs.org>

	* config.values.sh: Only update config.values.in if changed.
	No external dependencies except perl.
	No temporary files.

1999-12-14  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.24 is released.

1999-12-13  Martin Buchholz  <martin@xemacs.org>

	* etags.c: Fix warning: `_GNU_SOURCE' redefined.

1999-12-07  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.23 is released.

1999-11-29  Andreas Jaeger  <aj@suse.de>

	* Makefile.in.in (INSTALLABLE_SCRIPTS): Removed pstogif.
	pstogif: Moved to package tm.

1999-11-29  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.22 is released

1999-11-28  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.21 is released.

1999-11-20  Martin Buchholz  <martin@xemacs.org>

	* process-gnu-depends.sh: Deleted.  Obsolete.
	* process-depends.sh: Deleted.  Obsolete.

1999-11-20  Jan Vroonhof  <jan@xemacs.org>

	* Makefile.in.in (instvardir): Added. From
	Jeff Miller <jmiller@smart.net>

1999-11-19  Martin Buchholz  <martin@xemacs.org>

	* etags.c: Upgrade to pot etags version 13.33.
	Make `etags --version' print out `XEmacs', not `GNU Emacs'

1999-11-17  Martin Buchholz  <martin@xemacs.org>

	* etags.c (canonicalize_filename): Typo fix

1999-11-05  Martin Buchholz  <martin@xemacs.org>

	* etags.c:
	* ../etc/etags.1:
	* ../etc/NEWS:
	Upgrade to etags version 13.32.
	etags.c has warnings removed, in addition.

1999-11-15  Martin Buchholz  <martin@xemacs.org>

	* gnuserv.c (ipc_spawn_watchdog): Use pid_t instead of int.

1999-11-10  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.20 is released

1999-11-04  Martin Buchholz  <martin@xemacs.org>

	* gnuserv.c (handle_response): Warning suppression

1999-09-27  Martin Buchholz  <martin@xemacs.org>

	* ellcc.c:
	ANSIfy.
	Remove MSDOS cruft.
	Remove WINDOWS cruft.
	Remove VMS cruft.
	(main): The wrong number of bytes were being read during argument
	processing.
	Delete ANSI imitations like ellcc_strchr().
	Call functions with the right number of arguments.
	Fix a typo.
	Make functions static.
	Remove compiler warnings.

1999-09-22  Martin Buchholz  <martin@xemacs.org>

	* cvtmail.c (main): ANSIfy
	* digest-doc.c (main): ANSIfy
	* hexl.c (main): ANSIfy

	* make-path.c: Remove declaration for errno.
	* mmencode.c (nextcharin): ANSIfy
	* movemail.c (pop_retr): ANSIfy

1999-07-30  Gleb Arshinov  <gleb@cs.stanford.edu>

	* pop.c (pop_quit): use CLOSESOCKET() instead of close()

	* run.c (build_cmdline): Fix NT native build unreferenced variable
 	warning
	(WinMain): Fix release mode build unreferenced variable warning

1999-07-30  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.19 is released

1999-07-22  SL Baur  <steve@miho>

	* Makefile.in.in (datadir): Add.
	From Jeff Miller <jmiller@smart.net>

1999-07-13  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.18 is released

1999-06-22  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.17 is released

1999-06-11  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.16 is released

1999-06-04  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.15 is released

1999-06-03  SL Baur  <steve@steve1.m17n.org>

	* Makefile.in.in: Move .PHONY up to force execution of `all'.

1999-05-14  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.14 is released

1999-05-14  SL Baur  <steve@gneiss.etl.go.jp>

	* update-elc.sh (ignore_pattern): Correct ignore_dirs/ignore=dirs
	european keyboard fuckage.

1999-05-03  Hrvoje Niksic  <hniksic@srce.hr>

	* update-elc.sh (ignore_pattern): Installation.el is dead.

1999-05-03  Hrvoje Niksic  <hniksic@srce.hr>

	* gnuclient.c: Include <sysfile.h> instead of <../src/sysfile.h>.

	* Makefile.in.in (cppflags): Add -I$(top_srcdir)/src.

1999-04-29  Andy Piper  <andy@xemacs.org>

	* make-docfile.c: build fixes for mingw32.
	* movemail.c: ditto.
	* run.c: ditto.
	* yow.c: ditto.
	* profile.c: ditto.
	(gettimeofday): new function copied from nt.c.

	* fakemail.c (make_file_preface): make buildable under windows.

	* Makefile.in.in: fix some build targets for when we are building
 	on a windows platform.

1999-03-12  giacomo boffi  <giacomo.boffi@polimi.it>

	* sorted-doc.c: corrected the outdated or plainly wrong
	texinfo headers. Broken up the mega-@table that crashes (at
	least RedHat's) TeX with:
	 "! TeX capacity exceeded, sorry [save size=4000]."

1999-03-12  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.13 is released

1999-03-10  Martin Buchholz  <martin@xemacs.org>

	* fakemail.c (add_a_stream): Always use full ANSI prototypes.

1999-03-06  Martin Buchholz  <martin@xemacs.org>

	* fakemail.c (main): Ansify.
	(xmalloc): Ansify.
	(xrealloc): Ansify.
	(get_keyword): use paranoid casts ((int) (unsigned char) c) for
	islower, toupper, isspace.

1999-03-05  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.12 is released

1999-03-01  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.11 is released

1999-02-17  SL Baur  <steve@xemacs.org>

	* update-elc.sh (ignore_dirs): Ignore lisp/mule subdirectory when
	running latin-1 XEmacs.  Eliminate 20.4 bundled kludges.
	* update-custom.sh (ignore_dirs): Ditto.

1999-02-15  Martin Buchholz  <martin@xemacs.org>

	* update-elc.sh:
	* update-autoloads.sh:
	* update-custom.sh:
	- improved automounter tmp directory support.
	- support 4 (!) empirically discovered automounter conventions

1999-02-05  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.10 is released

1999-02-02  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.9 is released

1999-01-27  Martin Buchholz  <martin@xemacs.org>

	* movemail.c (strerror): Must be NON-static, since it is used by
	the POP code, which got moved to a separate file.

1999-01-11  Damon Lipparelli  <lipp@primus.com>

	* Makefile.in.in: use ellcc (not ellc) everywhere

1999-01-10  J. Kean Johnston  <jkj@sco.com>

	* Makefile.in.in: Include moduledir and sitemoduledir as defined
	by configure.
	- Install ellcc if we're supporting shared objects
	- Rules and dependancies for ellcc

	* ellcc.c: New file. Front end to the compiler for making modules.

	* ellcc.h.in: New file. Contains path definitions used by ellcc.

	* make-docfile.c (main): Add check for -E argument used by ellcc.

	* make-docfile.c: Changed output format when in -E mode.

1998-12-28  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.8 is released.

1998-12-24  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.7 is released.

1998-12-17  Andy Piper  <andy@xemacs.org>

	* pop.c (pop_open): disable use of getpass() which doesn't exist under NT.

	* movemail.c: mess with includes so that it builds under native NT.

	* pop.c: mess with includes so that it builds under native NT.
	From Fabrice Popineau <popineau@ese-metz.fr>

1998-12-16  Andy Piper  <andy@xemacs.org>

	* XEmacs 21.2.6 is released

1998-12-05  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.5 is released

1998-11-28  SL Baur  <steve@altair.xemacs.org>

	* XEmacs 21.2-beta4 is released.

1998-10-14  Andy Piper  <andyp@parallax.co.uk>

	* Makefile.in.in (movemail): add getopt.o to objects to link with.

	* movemail.c (main): rewrite to use getopt(). Add options for
	order reversal, progress output, regexp matching and message
	deletion.
	(popmail): add some optional verbose messages. Use pop_search_top
	for getting messages. Make message deletion optional. Delete all
	messages at the end rather than on a message my message basis.
	(pop_search_top): new function. Looks for messages matching regexp.
	(compile_regex): new function stolen from etags.

1998-10-15  SL Baur  <steve@altair.xemacs.org>

	* XEmacs 21.2-beta3 is released.

1998-10-12  SL Baur  <steve@altair.xemacs.org>

	* lib-src/gnudepend.pl: Use /usr/bin/perl.
	* Makefile.in.in (INSTALLABLE_SCRIPTS): Remove send-pr, install-sid.
	(GEN_SCRIPTS): Ditto.
	Delete TM_SCRIPTS.

1998-10-11  SL Baur  <steve@altair.xemacs.org>

	* tm-au:
	* tm-file:
	* tm-html:
	* tm-image:
	* tm-mpeg:
	* tm-plain:
	* tm-ps:
	* tmdecode: packaged.

1998-10-10  SL Baur  <steve@altair.xemacs.org>

	* install-sid:
	* send-pr:  Packaged

1998-10-01  Jan Vroonhof  <vroonhof@math.ethz.ch>

	* gnuclient.c (filename_expand): Don't forget to copy the
	filename under UNIX.

1998-09-29  SL Baur  <steve@altair.xemacs.org>

	* XEmacs 21.2-beta2 is released.

1998-09-08  Raymond Toy  <toy@rtp.ericsson.se>

	* gnuclient.c (filename_expand): Added better recognition of
	absolute pathnames for CYGWIN.  Convert absolute pathnames with
	drive letters to something xemacs can handle.

1998-07-19  SL Baur  <steve@altair.xemacs.org>

	* XEmacs 21.2-beta1 is released.

1998-07-15  SL Baur  <steve@altair.xemacs.org>

	* update-elc.sh (ignore_pattern): Add very-early-lisp.el as
	something to never bytecompile.

1998-07-12  SL Baur  <steve@altair.xemacs.org>

	* XEmacs 21.0-pre5 is released.

1998-07-09  SL Baur  <steve@altair.xemacs.org>

	* XEmacs 21.0-pre4 is released.

1998-06-16  Jan Vroonhof  <vroonhof@math.ethz.ch>

	* gnuclient.c (main): Use disconnect_from_server to read & echo
	result.

1998-06-15  Andy Piper  <andyp@parallax.co.uk>

	* Makefile.in.in: add xemacs icon to the runemacs executable.

1998-06-12  Jim Radford  <radford@robby.caltech.edu>

	* gnuclient.c (initialize_signals): Don't pass SIGHUP to XEmacs.

1998-06-04  Andy Piper  <andyp@parallax.co.uk>

	* Makefile.in.in (runemacs): add runemacs as a build target if
	HAVE_MS_WINDOWS is defined. move cpp stuff up slightly so that
	build targets can benefit from it.

1998-05-31  Kirill M. Katsnelson  <kkm@kis.ru>

	* wakeup.c (sleep): Added NT preprocessor quirkfest.
	(main): Exit when fflush() fails on stdout.

1998-05-30  Kirill M. Katsnelson  <kkm@kis.ru>

	* getopt.c: Undefine getpid before redefinition.

	* make-docfile.c: Added <io.h> when compiling on NT

	* movemail.c: Ditto.
	(main): Declare some auto variables only when DISABLE_DIRECT_ACCESS
	is undefined, so they are actually used, to supress compilation
	warnings.

1998-05-16  SL Baur  <steve@altair.xemacs.org>

	* etags.c (C_entries): Avoid short circuiting comparisons on
	characters that may appear in C++ operator constructs.

	* ootags.c (C_entries): Commentary change.

	* Makefile.in.in (PKG_SCRIPTS): Remove add-little-package.sh.

1998-05-11  Martin Buchholz  <martin@xemacs.org>

	* Makefile.in.in:
	- Adjust for luser's CDPATH being set to something weird.
	- Take into account bash 2.02's tendency to print the cwd when
	  using CDPATH.  Always use `cd ./foo' instead of `cd foo'.
	- fix the run-temacs target to use $(DUMPENV)
	- fix the run-puremacs target to use $(DUMPENV)
	- fix the `depend' target to properly $(RM) the right files
	- Generate a better TAGS file for XEmacs' lisp code using
	  hand-crafted regexps.
	- Use standard coding conventions for modules/Makefile.in

1998-05-07  Andy Piper  <andyp@parallax.co.uk>

	* update-elc.sh: test x && y loses in the presence of set -e, use
	if instead.

1998-05-06  SL Baur  <steve@altair.xemacs.org>

	* Makefile.in.in (INSTALLABLES): Add ootags.
	(ootags): New rule.

	* ootags.c: New file.
	(C_entries): Annotate changes neeeded for increased OO-Browser
	context.

1998-05-05  Jeff Miller <jmiller@smart.net>

	* Makefile.in.in: Fix blessmail target.

1998-05-05  SL Baur  <steve@altair.xemacs.org>

	* Makefile.in.in (etags_args): Back out -DOO_BROWSER

	* etags.c: Revert to CVS version 1.11 (pre OO-browser additions).

1998-05-04  SL Baur  <steve@altair.xemacs.org>

	* etags.c (C_entries): Fix order typo.
	(C_entries): Restore previous test.

Wed Apr 22 12:59:35 1998  Andy Piper  <andyp@parallax.co.uk>

	* installexe.sh: fix to use -f instead of -e file and fix shift
	typo.

1998-04-22  SL Baur  <steve@altair.xemacs.org>

	* etags.c: Unconditionally define OO_BROWSER.

	* update-elc.sh: Tighten up regexp on uname -r output.
	From Marcus Thiessel <thiessel@tmbbwtx.bbn.hp.com>

1998-04-19  Jan Vroonhof  <vroonhof@math.ethz.ch>

	* gnuclient.c (main): Read eval from from stdin if just "-batch"
	is given.
	* gnudoit: Support this.
	* gnuserv.1: Document this behavior.

1998-04-18  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* etags.c (C_entries): Add parentheses.

	* etags-vmslib.c: Remove.  It's not needed anymore.

Fri Apr 17 12:59:35 1998  Andy Piper  <andyp@parallax.co.uk>

	* installexe.sh: New file.

1998-04-17  Olivier Galibert  <galibert@pobox.com>

	* etags.c (print_help): Correct typo.

1998-04-16  SL Baur  <steve@altair.xemacs.org>

	* Makefile.in.in: Add -DOO_BROWSER to etags arguments.

	* etags.c: Synch with InfoDock.

	* update-autoloads.sh: Don't attempt to eval `make-special' stuffs
	anymore.  They are no longer used.
	* update-custom.sh: Always check in lisp/.

1998-03-18  Jan Vroonhof  <vroonhof@math.ethz.ch>

	* gnuclient.c (main): Do not copy string unnecessary in (too)
	small buffers.

1998-03-02  SL Baur  <steve@altair.xemacs.org>

	* update-elc.sh: Change all -q -no-site-file to -vanilla

1998-02-27  SL Baur  <steve@altair.xemacs.org>

	* update-elc.sh (ignore_pattern): Add Installation.el, remove old
	stuff from 20.4.

Tue Feb 17 12:50:37 1998  Andy Piper  <andyp@parallax.co.uk>

	* lib-src/Makefile.in.in: make sure clean removes msw executables

1998-02-24  SL Baur  <steve@altair.xemacs.org>

	* gnuserv.h: Enable USE_TMPDIR.

1998-02-23  Glynn Clements  <glynn@sensei.co.uk>

	* gnuclient.c (main): initialise variable `tmpdir' from the TMPDIR
 	environment variable.

	* gnuserv.c (various): replace hardcoded references to /tmp with
 	the value of `tmpdir'.
	(main): initialise variable `tmpdir' from the TMPDIR
 	environment variable.

	* gnuserv.h: include (commented-out) definition of USE_TMPDIR.
	Add `extern char *tmpdir'.

	* gnuslib.c (various): replace hardcoded references to /tmp with
	the value of `tmpdir'.

1998-02-15  SL Baur  <steve@altair.xemacs.org>

	* getopt.c (_getopt_internal): Add braces for clarity.

1998-01-13  Martin Buchholz  <martin@xemacs.org>

	* lib-src/add-little-package.sh:
	* lib-src/add-big-package.sh:
	Use proper paranoid quoting for sh variables.
	-batch implies -q.

Thu Jan 08 09:42:36 1998    <andyp@parallax.co.uk>

	* gnuserv.h: only set UNIX_DOMAIN_SOCKETS if HAVE_SYS_UN_H is
	set.

	* gnuserv.c: tidy up so that it builds when we don't have
 	UNIX_DOMAIN_SOCKETS.

1998-01-07  SL Baur  <steve@altair.xemacs.org>

	* update-elc.sh (ignore_pattern): Replace -vanilla with `-q
	-no-site-file'.
	* update-autoloads.sh (dirs): Ditto.
	* update-custom.sh (dirs): Ditto.

1997-12-18  SL Baur  <steve@altair.xemacs.org>

	* update-elc.sh (mule_p): Remove skk's special treatment.

1997-12-09  SL Baur  <steve@altair.xemacs.org>

	* update-elc.sh (ignore_pattern): Correct paths of files that
	should not be bytecompiled, and remove dead files.

1997-12-02  SL Baur  <steve@altair.xemacs.org>

	* update-elc.sh (mule_p): Update for addition of SKK.

	* update-autoloads.sh (mule_p): Update ignore_dirs for
	lisp/language and lisp/skk.
	* update-custom.sh (mule_p): Ditto.

1997-11-29  Jeff Miller <jmiller@smart.net>

	* Makefile.in.in: Changed path to blessmail.el for blessmail target
	  to match new lisp directory layout.

1997-11-27  SL Baur  <steve@altair.xemacs.org>

	* update-elc.sh: Obliterate usage of make_special, since nothing
	requires it any more.

1997-11-23  SL Baur  <steve@altair.xemacs.org>

	* update-elc.sh (BYTECOMP): cleantree.el has been moved.

1997-11-18  Colin Rafferty  <craffert@ml.com>

	* update-elc.sh (prune_vc): Made it ignore any directory that
	starts with a period.

1997-11-16  SL Baur  <steve@altair.xemacs.org>

	* gnuserv.c (main): make return type int.
	Suggested by Andreas Jaeger <aj@arthur.rhein-neckar.de>

	* fakemail.c (main): Ditto.

1997-11-13  SL Baur  <steve@altair.xemacs.org>

	* pop.c: Add includes from movemail.c so standard functions get
	declared.
	(pop_retrieve): Return NULL if falling off the end of the
	function.

	* movemail.c: Hide declarations of popmail(), mbx_write(),
	mbc_delimit_begin(), and mbx_delimit_end() behind MAIL_USE_POP
	guard.
	(pop_retr): Change 4th parameter to void *.

1997-11-02  SL Baur  <steve@altair.xemacs.org>

	* update-custom.sh (dirs): Remove packaged directories.

	* update-elc.sh (ignore_pattern): Hyperbole, oobr and ilisp are
	now packaged.

	* update-autoloads.sh (mule_p): Hyperbole and oobr are now
	packaged.

1997-10-30  SL Baur  <steve@altair.xemacs.org>

	* update-autoloads.sh (mule_p): EFS has been packaged.
	* update-elc.sh (make_special_commands): Ditto.

	* update-elc.sh: VM has been packaged.

	* update-autoloads.sh: Add directory language

1997-10-23  SL Baur  <steve@altair.xemacs.org>

	* update-elc.sh (BYTECOMP): Specify -vanilla
	* update-autoloads.sh (dirs): Ditto.
	* update-custom.sh (dirs): Ditto.

1997-10-10  Martin Buchholz  <mrb@eng.sun.com>

	* config.values.in:  Run config.values.sh

1997-10-09  SL Baur  <steve@altair.xemacs.org>

	* Makefile.in.in (PKG_SCRIPTS): Add new package manipulation
	scripts.

	* add-little-package.sh: New file.  Support script to install
	single file packages.

	* Makefile.in.in (distclean): Reverse change -- do not remove
	config.values.in.
	Suggested by: Martin Buchholz <mrb@Eng.Sun.COM>

1997-10-06  SL Baur  <steve@altair.xemacs.org>

	* Makefile.in.in (distclean): Remove config.values.in.
	From Martin Buchholz <mrb@Eng.Sun.COM>

1997-10-04  SL Baur  <steve@altair.xemacs.org>

	* update-autoloads.sh (mule_p): W3 is a package now.

1997-09-30  SL Baur  <steve@altair.xemacs.org>

	* update-elc.sh (ignore_pattern): Don't attempt bytecompiling
	lisp/leim/quail/tibetan.el and lisp/language/tibet-util.el.

1997-09-29  SL Baur  <steve@altair.xemacs.org>

	* update-elc.sh (mule_p): Ignore mu/latex-math-symbol.el if we're
	not building with Mule.

1997-09-27  Hrvoje Niksic  <hniksic@srce.hr>

	* update-custom.sh: New file.

	* update-autoloads.sh: Minor fixes.

1997-08-11  Jeff Miller <jmiller@smart.net>
	* Makefile.in.in:  Added a test for system-type equal to linux to
	lisp/paths.el.  Mail spool dir should be /var/spool/mail.

	* cleaned up lib-src/Makefile.in.in regarding targets blessmail and
	maybe-blessmail. Added target do-blessmail.  Makefile.in.in was also
	missing a variable called "configuration. This messed up archilibdir.

	* Added highlighting to text suggesting to do "make gzip-el" in top
	level Makefile.in.  Added code to do make maybe-blessmail after a
	make install is done.

1997-08-07  Jan Vroonhof  <vroonhof@math.ethz.ch>

	* gnuclient.c (main): Made help string correspond to options.

1997-08-01  SL Baur  <steve@altair.xemacs.org>

	* Makefile.in.in (distclean): Remove config.values here only.

1997-07-27  SL Baur  <steve@altair.xemacs.org>

	* Makefile.in.in (UTILITIES): Add config.values so it can be
	cleared away by `make distclean'.

1997-07-21  SL Baur  <steve@altair.xemacs.org>

	* update-elc.sh (make_special_commands): Remove processing for
	Gnus and AUCTeX.

1997-07-19  SL Baur  <steve@altair.xemacs.org>

	* update-elc.sh (mule_p): Do not attempt to bytecompile
	char-table.el and chartblxmas.el.

1997-07-08  Steven L Baur  <steve@altair.xemacs.org>

	* update-elc.sh (cc-mode): Don't give cc-mode special treatment.

	* update-autoloads.sh (cc-mode): Don't give cc-mode special
	treatment.

	* rcs2log: Synch with Emacs/Mule zeta.

1997-07-03  Steven L Baur  <steve@altair.xemacs.org>

	* update-elc.sh (make_special_commands): Fix building of ilisp so
	custom-load.elc gets built.

1997-06-27  Steven L Baur  <steve@altair.xemacs.org>

	* update-autoloads.sh:  Major rework.  Avoid looking at MULE
	directories if not running XEmacs/Mule.
	- Look into all Mule directories for building autoloads.

	* update-elc.sh (make_special_commands): Fix handling of
	bytecompilation of AUCTeX to avoid looking at tex-jp.el if not
	running MULE.

1997-06-24  Steven L Baur  <steve@altair.xemacs.org>

	* gnuattach: Needed executable bit set.
	Suggested by Kyle Jones <kyle_jones@wonderworks.com>

	* update-elc.sh (ignore_pattern): lisp/language/ethiopic byte
	compiles now.

1997-06-24  MORIOKA Tomohiko  <morioka@jaist.ac.jp>

	* update-autoloads.sh: Search lisp/mule/.

1997-06-20  Steven L Baur  <steve@altair.xemacs.org>

	* gnuattach: Readd as warning script.

	* Makefile.in.in (INSTALLABLE_SCRIPTS): Readd Gnuattach.
	From Hrvoje Niksic <hniksic@srce.hr>

1997-06-13  Steven L Baur  <steve@altair.xemacs.org>

	* update-elc.sh (mule_p): Ignore lisp/language when building
	non-Mule.
	(ignore_pattern): Ignore Languages we don't support yet.

1997-06-02  Steven L Baur  <steve@altair.xemacs.org>

	* update-elc.sh (ignore_dirs): Handle ported Quail (LEIM).

Tue May 20 23:22:00 1997  Steven L Baur  <steve@altair.xemacs.org>

	* update-autoloads.sh (dirs): Remove obsolete directory lisp/vms
	from exclusion list (it doesn't exist any more).  Remove
	lisp/eterm from exclusion list of directories searched for
	autoloads.

Thu May  1 15:26:20 1997  Steven L Baur  <steve@altair.xemacs.org>

	* update-elc.sh (mule_p): Test for mule bombs with change in format
	of new output of featurep.

Fri Apr 25 09:12:04 1997  Steven L Baur  <steve@altair.xemacs.org>

	* pstogif: Use Martin Buchholz magic to automagically find perl
	interpreter.

Tue Apr  8 03:08:22 1997  Steven L Baur  <steve@altair.xemacs.org>

	* Makefile.in.in: C Comment out Make comments.  No snide comments
	from me, no sir.

Tue Apr  1 12:26:53 1997  Steven L Baur  <steve@altair.xemacs.org>

	* Makefile.in.in: Added stuff for updated movemail.c.

Sat Mar 29 16:57:01 1997  Steven L Baur  <steve@altair.xemacs.org>

	* send-pr (GNATS_ADDR): Use xemacs.org as submission address.
	(DATADIR): Allow for DATADIR to be passed in as an environment
	variable.

Sun Mar 23 15:57:19 1997  Steven L Baur  <steve@altair.xemacs.org>

	* update-elc.sh (make_special_commands): Use target of x20 for efs.

Wed Mar 19 10:38:04 1997  Steven L Baur  <steve@altair.xemacs.org>

	* Makefile.in.in (SCRIPTS): Link gzip-el.sh in --srcdir
	configuration.

Tue Mar 18 17:49:14 1997  Steven L Baur  <steve@altair.xemacs.org>

	* update-elc.sh (EMACS): Removed $XEMACS backdoor.  We will make
	the .elcs *only* with the freshly built XEmacs.

Mon Mar 17 10:12:03 1997  Steven L Baur  <steve@altair.xemacs.org>

	* Makefile.in.in (INSTALLABLE_SCRIPTS): Add install-sid and
	send-pr (from GNATS).

	* update-elc.sh (prune_vc): Use full path to cleantree.el.
	(NUMTOCOMPILE): Remove useless rule to recompile out-of-date .elcs.

Sun Mar 16 21:13:29 1997  Steven L Baur  <steve@altair.xemacs.org>

	* install-sid: New file (GNATS integration).

	* send-pr: New file (GNATS integration).

Fri Mar 14 17:59:57 1997  Steven L Baur  <steve@altair.xemacs.org>

	* update-elc.sh (ignore_dirs): Build VM with `make autoload'.

Wed Mar  5 18:07:57 1997  Steven L Baur  <steve@altair.xemacs.org>

	* gzip-el.sh: New file.  Courtesy of Jeff Miller and Hrvoje Niksic.

	* update-elc.sh (els): Remove out of date .elcs before building.

Tue Mar  4 18:45:10 1997  Martin Buchholz  <mrb@eng.sun.com>

	* update-elc.sh (els): No more special treatment for vm.elc.

Wed Feb 26 18:17:59 1997  Steven L Baur  <steve@altair.xemacs.org>

	* make-docfile.c (next_extra_elc): New function.
	(main): Use it.  Implementation of `-i' parameter to pass a list
	of site-loaded lisp files.

Wed Feb 19 18:24:49 1997  Steven L Baur  <steve@altair.xemacs.org>

	* update-elc.sh: Added lisp/auctex.

Thu Feb 13 11:32:47 1997  Steven L Baur  <steve@altair.xemacs.org>

	* Makefile.in.in: Install pstogif script.

Sun Dec 29 17:16:45 1996  Martin Buchholz  <mrb@eng.sun.com>

	* update-elc.sh (make_special_commands): Make ilisp be a little
	smarter about recompilation.

Wed Dec 18 20:22:55 1996  Martin Buchholz  <mrb@eng.sun.com>

	* mmencode.c: Don't declare index().

	* Makefile.in.in: Documentation changes.

	* update-elc.sh: Portability Fix.

Thu Dec  5 15:41:53 1996  Martin Buchholz  <mrb@Eng.Sun.COM>

	* update-elc.sh: Corrections to protect against too smart /bin/sh'es.