]> code.delx.au - gnu-emacs/blobdiff - src/ChangeLog
Support Tooltips with the Carbon emacs port.
[gnu-emacs] / src / ChangeLog
index cd9e767035f6514c1e7b2a2c906a31c58992394d..4be50d1108d893c018425e243afb905011b70e2d 100644 (file)
@@ -1,3 +1,241 @@
+2004-05-29  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
+
+       * macfns.c: Don't include ccl.h.
+       [MAC_OSX]: Don't include QuickTime/QuickTime.h.
+       [!MAC_OSX]: Don't include alloca.h, Windows.h, Gestalt.h, or
+       TextUtils.h.
+       (Fx_create_frame): Sync with xfns.c.  Initialize cursor
+       descriptors.
+       (Fx_display_mm_height, Fx_display_mm_width): Calculate length from
+       display height/width.
+       (compute_tip_xy, Vx_max_tooltip_size): Declare.
+       (unwind_create_tip_frame, compute_tip_xy): New functions.
+       (x_create_tip_frame, Fx_show_tip, Fx_hide_tip): Sync with xfns.c.
+       (syms_of_macfns): Initialize Qcancel_timer, Vx_max_tooltip_size,
+       and last_show_tip_args.
+       
+       * macgui.h [!MAC_OSX]: Include Gestalt.h.
+       (Cursor, No_Cursor): New defines.
+       [!TARGET_API_MAC_CARBON] (SetPortWindowPort): New compatibility
+       macro.
+       [!TARGET_API_MAC_CARBON] (arrow_cursor): Declare.
+
+       * macmenu.c (mac_menu_show, mac_dialog): Use SetPortWindowPort.
+
+       * macterm.c: Don't include Gestalt.h.
+       (enum mouse_tracking_type, mouse_tracking_in_progress): Remove.
+       (XDrawLine, XClearArea, XClearWindow, mac_draw_bitmap)
+       (mac_set_clip_rectangle, mac_reset_clipping, XCreatePixmap)
+       (XFillRectangle, mac_draw_rectangle, mac_draw_string_common)
+       (mac_copy_area, mac_copy_area_with_mask, x_update_end)
+       (construct_mouse_click, XTmouse_position)
+       (x_scroll_bar_report_motion, x_calc_absolute_position)
+       (do_mouse_moved, do_zoom_window, mac_do_receive_drag)
+       (XTread_socket, make_mac_frame): Use SetPortWindowPort.
+       (note_mouse_movement): Clear the mouse face and reset the pointer
+       shape when the pointer goes outside the frame without grabbing.
+       (mac_front_window): New function.
+       (mac_window_to_frame): New macro.
+       (XTmouse_position, x_scroll_bar_report_motion, do_window_update)
+       (do_window_activate, do_window_deactivate, do_app_resume)
+       (do_app_suspend, do_mouse_moved, do_menu_choice, do_grow_window)
+       (do_zoom_window, mac_do_receive_drag, XTread_socket)
+       (mac_check_for_quit_char): Use mac_front_window and/or
+       mac_window_to_frame.
+       (x_scroll_bar_handle_click): Set `(PORTION . WHOLE)' part in a
+       scroll-bar click event.
+       (mac_define_frame_cursor): Change the pointer shape.
+       (x_free_frame_resources): Reset tip_window to NULL when it is
+       disposed.
+       [!TARGET_API_MAC_CARBON] (arrow_cursor): New variable.
+       [!TARGET_API_MAC_CARBON] (do_init_managers): Initialize
+       arrow_cursor.
+       (do_window_update): Don't do anything if the updated window is the
+       tooltip window.
+       (do_mouse_moved): Handle mouse movement events here (previously in
+       XTread_socket).  Clear the mouse face if
+       dpyinfo->mouse_face_hidden is set.
+       (do_os_event, do_events): Remove (now in XTread_socket).
+       (XTread_socket): Immediately return if interrupt_input_blocked.
+       Loop until all the events in the queue are processed.  Rearrange
+       codes for mouse grabbing.  Add tooltip support.  Include the
+       contents of do_os_event and do_events.  Remove mouse movement
+       handling (now in do_mouse_moved).  Add the case where
+       Vmouse_highlight has an integer value.
+       (NewMacWindow): Remove.
+       (make_mac_frame): Do what NewMacWindow previously did.  Don't do
+       excess initializations.
+       (make_mac_terminal_frame): Previous initializations in
+       make_mac_frame are moved here.
+       (mac_initialize_display_info): Initialize
+       dpyinfo->mouse_face_overlay and dpyinfo->mouse_face_hidden.
+
+       * xdisp.c [MAC_OS] (No_Cursor): Remove variable.
+       (define_frame_cursor1): Don't treat HAVE_CARBON as a special case.
+
+2004-05-29  Richard M. Stallman  <rms@gnu.org>
+
+       * lisp.h (truncate_undo_list): Update decl.
+
+       * alloc.c (undo_outer_limit): New variable.
+       (syms_of_alloc): Defvar it.
+       (Fgarbage_collect): Pass undo_outer_limit to truncate_undo_list.
+
+       * undo.c (truncate_undo_list): New arg LIMITSIZE.
+
+       * alloc.c (lisp_align_malloc): Check for base == 0
+       regardless of HAVE_POSIX_MEMALIGN.
+       Clean up HAVE_POSIX_MEMALIGN handling of `err'.
+
+2004-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * alloc.c: Undo Kim's recent changes and fix the same bug differently.
+       (marker_blocks_pending_free): Remove.
+       (Fgarbage_collect): Sweep after cleaning up undo-lists.
+       Mark the undo lists after claning them up.
+       Don't free block in marker_blocks_pending_free.
+       (mark_buffer): Don't mark undo_list.
+       (gc_sweep): Sweep hash-tables and strings first.
+       Do free marker blocks that are empty.
+
+2004-05-28  Jim Blandy  <jimb@redhat.com>
+
+       * regex.c (print_partial_compiled_pattern): Add missing 'break'
+       after 'case wordend'.  For symbeg and symend, print to stderr,
+       like the other cases.
+
+2004-05-28  Noah Friedman  <friedman@splode.com>
+
+       * process.c (Fdelete_process): Do not call remove_process.
+
+2004-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * alloc.c (struct backtrace): Remove.
+       (Fgarbage_collect): Use the new mark_backtrace.
+
+       * eval.c (mark_backtrace): New function.
+
+       * minibuf.c (run_exit_minibuf_hook): New function.
+       (read_minibuf_unwind): Don't run exit-minibuffer-hook any more.
+       (read_minibuf): Use separate unwind handler to run exit-minibuf-hook.
+
+2004-05-27  Kim F. Storm  <storm@cua.dk>
+
+       * xdisp.c (back_to_previous_visible_line_start): Skip backwards
+       over display properties, e.g. images, that replace buffer text.
+
+2004-05-25  Kim F. Storm  <storm@cua.dk>
+
+       * alloc.c (marker_blocks_pending_free): New var.
+       (gc_sweep): Store free marker blocks on that list.
+       (Fgarbage_collect): Free them after undo-list cleanup.
+
+       * process.c (wait_reading_process_input): Check connect_wait_mask
+       before actually accepting connection in case it has already been
+       accepted due to recursion.
+
+2004-05-23  K\e,Ba\e(Broly L\e,Bu\e(Brentey  <lorentey@elte.hu>  (tiny change)
+
+       * coding.c (Fset_safe_terminal_coding_system_internal):
+       Set suppress_error in safe_terminal_coding, not terminal_coding.
+
+2004-05-22  Richard M. Stallman  <rms@gnu.org>
+
+       * alloc.c (Fmake_string): Doc fix.
+
+       * buffer.c (clone_per_buffer_values): Copy the alist of local vars,
+       and the alist pairs too.
+
+       * casefiddle.c (casify_object): Return OBJ unchanged if not real char.
+
+       * emacs.c (main): Update copyright year.
+
+       * fileio.c (Fread_file_name): Expand DIR if not absolute.
+
+       * insdel.c (del_range_2, replace_range): Don't write an anchor
+       if the gap is empty.
+
+       * xdisp.c (try_scrolling): If scroll-up-aggressively or
+       scroll-down-aggressively is small but positive, put point
+       near the screen edge.
+
+2004-05-22  Juanma Barranquero  <lektu@terra.es>
+
+       * keymap.c (Fdefine_key): Doc fix.
+
+2004-05-22  Kim F. Storm  <storm@cua.dk>
+
+       * alloc.c (struct backtrace): Add debug_on_exit member.
+       (Fgarbage_collect): Clear out buffer undo_list markers after gc_sweep.
+       Identify those markers as Lisp_Misc_Free objects.  Clear car and cdr of
+       the removed cons cells.
+       (mark_object): Undo previous change - disallow Lisp_Misc_Free objects.
+       (gc_sweep): Clear cons_blocks before sweeping strings, so we don't have
+       any cons cells pointing to unallocated stings.
+       Do not lisp_free any marker blocks, as there may still be pointers
+       to them from buffer undo lists at this stage of GC.
+
+       * keyboard.c (struct backtrace): Add debug_on_exit member.
+       (Fcommand_execute): Clear it.
+
+2004-05-20  Luc Teirlinck  <teirllm@auburn.edu>
+
+       * intervals.c (lookup_char_property): Do not prematurely return nil.
+
+2004-05-19  Jim Blandy  <jimb@redhat.com>
+
+       Add support for new '\_<' and '\_>' regexp operators, matching the
+       beginning and end of symbols.
+
+       * regex.c (enum syntaxcode): Add Ssymbol.
+       (init_syntax_once): Set the syntax for '_' to Ssymbol, not Sword.
+       (re_opcode_t): New opcodes `symbeg' and `symend'.
+       (print_partial_compiled_pattern): Print the new opcodes properly.
+       (regex_compile): Parse the new operators.
+       (analyse_first): Skip sym(beg|end) (they match only the empty string).
+       (mutually_exclusive_p): `symend' is mutually exclusive with \s_ and
+       \sw; `symbeg' is mutually exclusive with \S_ and \Sw.
+       (re_match_2_internal): Match symbeg and symend.
+
+       * search.c (trivial_regexp_p): \_ is no longer a trivial regexp.
+
+2004-05-19  Kim F. Storm  <storm@cua.dk>
+
+       * .gdbinit (xsymbol): Fix last change.
+
+2004-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * .gdbinit (xprintstr): New fun.
+       (xstring, xprintsym): Use it.
+
+       * w32proc.c (create_child): Use INTMASK.
+
+       * alloc.c (Fgarbage_collect): Do all the marking before flushing
+       unmarked elements of the undo list.
+
+2004-05-18  David Ponce  <david@dponce.com>
+
+       * print.c (print): Reset print_depth before to call print_object.
+
+2004-05-18  Jason Rumney  <jasonr@gnu.org>
+
+       * w32console.c: Prefix RIF functions with w32con_ to avoid
+       namespace clash with functions in term.c and w32term.c.
+
+       * w32menu.c (add_menu_item, w32_menu_display_help)
+       [USE_LISP_UNION_TYPE]: Cast from Lisp_Object using i member.
+
+       * w32term.h (display_x_get_resource, vga_stdcolor_name): Add prototype.
+
+2004-05-18  Eli Zaretskii  <eliz@gnu.org>
+
+       * lisp.h (DECL_ALIGN): Remove restriction on MS-DOS systems.
+
+       * msdos.c (syms_of_msdos): Initialize dos-unsupported-char-glyph
+       with make_number.
+       (IT_write_glyphs): Extract glyph from dos-unsupported-char-glyph
+       with XINT.
+
 2004-05-18  Kim F. Storm  <storm@cua.dk>
 
        * blockinput.h (INPUT_BLOCKED_P): New macros.
 
        * print.c (print_object): Increase buf size.
 
+2004-05-17  Jason Rumney  <jasonr@gnu.org>
+
+       * w32fns.c (Fw32_register_hot_key, Fw32_unregister_hot_key)
+       (Fw32_toggle_lock_key) [USE_LISP_UNION_TYPE]: Cast from
+       Lisp_Object using i member.
+       (w32_quit_key): Rename from Vw32_quit_key, and make an int.
+       (syms_of_w32fns, globals_of_w32fns): Use Lisp_Object and int
+       consistently.
+
+       * w32proc.c (create_child): Use make_number instead of masking pid.
+
+       * w32fns.c (w32_color_map_lookup): Return a Lisp_Object.
+       (x_to_w32_charset, w32_to_x_charset, w32_to_all_x_charsets):
+       Use EQ to compare Lisp_Objects.
+       (w32_parse_hot_key): Use int for lisp_modifiers consistently.
+
+       * w32term.c (w32_num_mouse_buttons): Rename from
+       Vw32_num_mouse_buttons and make it an int.
+
+       * w32.c (init_environment): Use it.
+
+       * w32fns.c (w32_wnd_proc): Likewise.
+
+       * w32proc.c (w32_pipe_read_delay): Rename from
+       Vw32_pipe_read_delay and make it an int.
+
+       * w32.c (_sys_read_ahead): Use it.
+
+       * lisp.h (egetenv) [USE_CRT_DLL]: Remove condition.
+
+       * w32proc.c (create_child) [USE_LSB_TAG]: Don't try to mask pid.
+
+       * w32inevt.c (w32_console_mouse_position, do_mouse_event)
+       (key_event): Don't mix Lisp_Object and int.
+
+       * w32heap.c (init_heap) [USE_LSB_TAG]: Don't check heap location.
+
+       * keyboard.c (kbd_buffer_get_event): Don't use event->code and
+       modifiers in language change event.
+
 2004-05-17  Kim F. Storm  <storm@cua.dk>
 
        * alloc.c (mark_object): Ignore Lisp_Misc_Free objects.
        section to frame.c section.
        (Fxw_display_color_p, Fx_file_dialog): Declare if
        HAVE_WINDOW_SYSTEM defined.
+
        * macfns.c (Fx_create_frame): Fix int/Lisp_Object mixup.
+
        * macmenu.c (set_frame_menubar): Use NILP to test a lisp value.
+
        * macterm.c (mac_get_emulated_btn, mac_event_to_emacs_modifiers)
        (mac_get_mouse_btn): Use NILP and EQ to test/compare lisp values.
        (XTread_socket): Fix int/Lisp_Object mixup.
        (mac_check_for_quit_char): Fix pointer/Lisp_Object mixup.
+
        * macterm.h (struct frame, struct face, struct image)
        (display_x_get_resource, Fx_display_color_p)
        (Fx_display_grayscale_p, Fx_display_planes, x_free_gcs):
        around call to ReceiveEvent to avoid certain crashes.
 
 2004-05-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
+
        * macterm.c (mac_draw_line_to_pixmap, XCreatePixmapFromBitmapData)
        (mac_fill_rectangle_to_pixmap, mac_draw_rectangle_to_pixmap)
        (mac_copy_area_to_pixmap, mac_copy_area_with_mask_to_pixmap):
 
        * macterm.c (XTread_socket): Remove bufp_r and
        numcharsp args.  Add hold_quit arg.
-       Rework to use just one, local, inev input_event. Store inev
+       Rework to use just one, local, inev input_event.  Store inev
        directly in fifo using kbd_buffer_store_event_hold.
 
        * sysdep.c (BUFFER_SIZE_FACTOR): Remove.
 
        * w32inevt.c (w32_console_read_socket): Remove bufp_r and
        numcharsp args.  Add hold_quit arg.
-       Rework to use just one, local, inev input_event. Store inev
+       Rework to use just one, local, inev input_event.  Store inev
        directly in fifo using kbd_buffer_store_event_hold.
 
        * w32inevt.h (w32_console_mouse_position): Fix prototype.
 
        * w32term.c (w32_read_socket): Remove bufp_r and numcharsp args.
-       Add hold_quit arg. Rework to use just one, local, inev
-       input_event. Store inev directly in fifo using
+       Add hold_quit arg.  Rework to use just one, local, inev
+       input_event.  Store inev directly in fifo using
        kbd_buffer_store_event_hold.  Update count in one place.
        Postpone call to gen_help_event until inev is stored; use new
        local do_help for this.
        (current_hold_quit) [USE_GTK]: Add.
        (event_handler_gdk): Adapt to new handle_one_xevent.
        (handle_one_xevent): Remove bufp_r and numcharsp args.
-       Add hold_quit arg. Rework to use just one, local, inev
-       input_event. Store inev directly in fifo using
+       Add hold_quit arg.  Rework to use just one, local, inev
+       input_event.  Store inev directly in fifo using
        kbd_buffer_store_event_hold.  Update count in one place.
        Postpone call to gen_help_event until inev is stored; use new
        local do_help for this.
        `goto done' to clarify code flow in deeply nested blocks.
        (x_dispatch_event): Simplify as handle_one_xevent now calls
        kbd_buffer_store_event itself.
-       (XTread_socket): Remove bufp_r and numcharsp args. Add hold_quit
+       (XTread_socket): Remove bufp_r and numcharsp args.  Add hold_quit
        arg.  Call handle_one_xevent with new arglist.  Store event from
        x_session_check_input in fifo.
        [USE_GTK]: Setup current_hold_quit.
        (marginal_area_string): Fix prototypes.
 
        * keyboard.h (POSN_POSN, POSN_SET_POSN): Rename macros from
-       POSN_BUFFER_POSN and POSN_SET_BUFFER_POSN. All uses changed.
+       POSN_BUFFER_POSN and POSN_SET_BUFFER_POSN.  All uses changed.
        (POSN_INBUFFER_P, POSN_BUFFER_POSN): New macros.
 
        * keyboard.c (make_lispy_position): Use modified mode_line_string,
        control frame pointer shape.  Detect image hot-spots for pointer
        and help_echo properties.  Use define_frame_cursor1.
        (note_mouse_highlight): Use Vvoid_text_area_pointer.
-       (syms_of_xdisp): Defsubr new defun. Intern and staticpro new variables.
+       (syms_of_xdisp): Defsubr new defun.  Intern and staticpro new variables.
        DEFVAR_LISP Vvoid_text_area_pointer instead of Vshow_text_cursor_in_void.
 
        * xfaces.c (cache_face): Abort if c->size exceeds MAX_FACE_ID.
        (glyph_to_pixel_coords): Don't use negative hpos.
        (x_y_to_hpos_vpos): Fix for partially visible first glyph.
        (append_stretch_glyph): Change ascent arg to be actual value
-       in pixels rather than ratio to height. Callers changed.
+       in pixels rather than ratio to height.  Callers changed.
        (calc_pixel_width_or_height): New aux function, implementing
        pixel based artihmetic for glyph widths and heights.
        (produce_stretch_glyph): Use calc_pixel_width_or_height for
        x_display_info_for_display instead.  Use Display in xev instead
        of GDK_DISPLAY.
        (x_dispatch_event): Call x_display_info_for_display.
-       (XTread_socket): Move GTK part out of loop. current_dpyinfo removed.
+       (XTread_socket): Move GTK part out of loop.  current_dpyinfo removed.
        (x_connection_closed): Call xg_display_close for GTK.
        (x_term_init): Call xg_display_open for additional displays.
        Initiate dpyinfo->xg_cursor with call to xg_create_default_cursor
        from x/w32/macterm.h files.  All uses changed.  Also change code
        which referred to f->output_data...->pixel_height.
        (FRAME_PIXEL_WIDTH): Renamed from PIXEL_WIDTH and moved
-       from x/w32/macterm.h files.  All uses changed.  Also change code
+       from x/w32/macterm.h files.  All uses changed.  Also change code
        which referred to f->output_data...->pixel_width.
        (FRAME_LINES): Renamed from FRAME_HEIGHT.  All uses changed.
        Also change code which referred to f->height.
        * xdisp.c: Make (many) trivial substitutions for renamed and
        new macros in dispextern.h, frame.h and window.h.
        (window_box_width): Adapt to per-window fringes and scroll bars,
-       and new fringe vs. display margin position. Note that returned
+       and new fringe vs. display margin position.  Note that returned
        value is no longer guaranteed to be a whole multiple of the frame
        column width, since per-window fringes may now be any width.
        (window_box_left_offset): New function like window_box_left, but
 
        * xfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
        parameters now defined in frame.h and frame.c.
-       (Vx_resource_name): Remove. Use generic var.
+       (Vx_resource_name): Remove.  Use generic var.
        (enum x_frame_parms): Remove (bogus, unused enum).
        (check_x_display_info): Make non-static (for frame.c).
        (struct x_frame_parm_table, x_frame_parms): Remove.
        (syms_of_xfns): Don't intern/staticpro removed vars.
 
        * xterm.c: Remove unnecessary extern declarations.
-       (x_fullscreen_adjust): Remove. Use generic instead.
+       (x_fullscreen_adjust): Remove.  Use generic instead.
        (x_redisplay_interface): Add x_frame_parm_handlers member.
 
        * w32gui.h (XrmDatabase): New (dummy) typedef.
 
        * w32fns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
        parameters now defined in frame.h and frame.c.
-       (Vx_resource_name): Remove. Use generic var.
+       (Vx_resource_name): Remove.  Use generic var.
        (enum x_frame_parms): Remove (bogus, unused enum).
        (check_x_display_info): Make non-static (for frame.c).
        (struct x_frame_parm_table, x_frame_parms): Remove.
 
        * macfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
        parameters now defined in frame.h and frame.c.
-       (Vx_resource_name): Remove. Use generic var.
+       (Vx_resource_name): Remove.  Use generic var.
        (check_x_display_info): Make non-static (for frame.c).
        (struct x_frame_parm_table, x_frame_parms): Remove.
        (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
        [HAVE_XPM]: Avoid clashes with XColor, XImage and Pixel
        definitions in xpm.h.
        (init_xpm_functions): New function.
-       (xpm_load): Sync with xfns.c. Adapt for Windows version of libXpm.
+       (xpm_load): Sync with xfns.c.  Adapt for Windows version of libXpm.
        (init_external_image_libraries): Try to load libXpm.dll.
 
        * fileio.c (Fcopy_file) [WINDOWSNT]: Reverse logic for setting
        * w32fns.c (DrawText): Kludge to avoid a redefinition on Windows
        when including gif_lib.h.
        (init_gif_functions, init_tiff_functions): New functions.
-       (gif_load, tiff_load): Sync with xfns.c version. Adjust colors for
-       Windows. Disable color table lookups. Call library functions
+       (gif_load, tiff_load): Sync with xfns.c version.  Adjust colors for
+       Windows.  Disable color table lookups.  Call library functions
        through pointers determined at runtime.
        (init_external_image_libraries): Try to load libungif.dll and
        libtiff.dll.
 
        * w32fns.c (init_jpeg_functions, jpeg_resync_to_restart_wrapper):
        New functions.
-       (jpeg_load): Sync with xfns.c version. Adjust colors for Windows.
-       Disable color table lookups. Call jpeg library functions
+       (jpeg_load): Sync with xfns.c version.  Adjust colors for Windows.
+       Disable color table lookups.  Call jpeg library functions
        through pointers determined at runtime.
        (init_external_image_libraries): Try to load jpeg.dll.
 
 
        * w32fns.c (XPutPixel): Handle monochrome images; used for masks.
        [HAVE_PNG]: Sync with xfns.c version.
-       (png_load): Adjust colors for Windows. Use Windows
-       bitmaps. Disable color table lookups.
+       (png_load): Adjust colors for Windows.  Use Windows
+       bitmaps.  Disable color table lookups.
        (DEF_IMGLIB_FN, LOAD_IMGLIB_FN): New macros.
        (init_png_functions): New function.
        (png_read_from_memory, png_load): Call png library functions
 2003-01-21  David Ponce  <david@dponce.com>
 
        * w32term.c (w32_encode_char): For DIM=1 charset, set
-       ccl->reg[2] to -1 before calling ccl_driver. (Sync. with xterm.c
+       ccl->reg[2] to -1 before calling ccl_driver.  (Sync. with xterm.c
        x_encode_char change by Kenichi Handa <handa@m17n.org> on
        2002-09-30.)
        (w32_draw_relief_rect): Declare all args.
        only if g_b_init_get_sid_identifier_authority is equal to 0.
        On initialization set g_b_init_get_sid_identifier_authority equal to 1.
 
-       * w32fns.c (globals_of_w32fns): New function. Used to initialize
+       * w32fns.c (globals_of_w32fns): New function.  Used to initialize
        those global variables that must always be initialized on startup
        even when the global variable initialized is non zero.
        Its primary purpose at this time is to initialize the global variable
 
        * w32fns.c (syms_of_w32fns): Call globals_of_w32fns.
 
-       * w32menu.c (globals_of_w32menu): New function. Used to
+       * w32menu.c (globals_of_w32menu): New function.  Used to
        initialize those global variables that must always be initialized
        on startup even when the global variable initialized is non zero.
        Its primary purpose at this time is to initialize the global
 2002-06-21  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
 
        * m/pmax.h (START_FILES): Define START_FILES for NetBSD and
-       OpenBSD. Add support for mipseb-*-netbsd* machines.
+       OpenBSD.  Add support for mipseb-*-netbsd* machines.
 
 2002-06-17  Andrew Choi  <akochoi@shaw.ca>
 
        (server_accept_connection): New function.
        (wait_reading_process_input): Use it to handle incoming connects.
        Do not enable input on a new connection if process is stopped.
-       (read_process_output): Handle datagram sockets. Use 2k buffer for them.
+       (read_process_output): Handle datagram sockets.  Use 2k buffer for them.
        (send_process): Handle datagram sockets.
        (Fstop_process, Fcontinue_process): Apply to network processes.  A stopped
        network process is indicated by setting command field to t .
 
 2001-12-01  Jason Rumney  <jasonr@gnu.org>
 
-       * window.c (Qleft_fringe, Qright_fringe): Remove. Now in frame.c.
+       * window.c (Qleft_fringe, Qright_fringe): Remove.  Now in frame.c.
 
        * w32term.h (WM_MOUSELEAVE, TME_LEAVE, TRACKMOUSEEVENT)
        [!WM_MOUSELEAVE]: Define.
 
        * xterm.c (zv_height, zv_bits, zv_period): Changed zv bitmap to
        fill fringe evenly with small dashes.
-       (x_draw_fringe_bitmap): Clear background if necessary. Align and
+       (x_draw_fringe_bitmap): Clear background if necessary.  Align and
        clip the new ZV bitmap to avoid jitter between rows.
        (x_draw_row_fringe_bitmaps): Rely on x_draw_fringe_bitmap to clear
        background.  Don't draw fringe bitmaps if fringe width is zero.
        menu items.  From David Ponce <dponce@wanadoo.fr>.
        (w32_dialog_show) [HAVE_DIALOGS]: Compile whole function
        conditionally.
-       (w32_menu_display_help): New argument OWNER. Rewritten to store a
+       (w32_menu_display_help): New argument OWNER.  Rewritten to store a
        help event in the owner frame's keyboard buffer.
 
        * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Display help directly.
        (my_create_tip_window): Assign tip_window.
        (x_create_tip_frame): Use same defaults as X.
        (compute_tip_xy): Remove unused variable.  Use full screen width.
-       (Fx_show_tip): Do not double height. Call ShowWindow directly.
+       (Fx_show_tip): Do not double height.  Call ShowWindow directly.
 
        * w32term.c (x_after_update_window_line): Doc fix.
        (w32_read_socket): Doc fix.  Avoid SET_FRAME_GARBAGED for tip
        `bitmaps':
 
        * dispextern.h (FRINGE_FACE_ID): Renamed from BITMAP_AREA_FACE_ID.
-       Comments fixed. Use renamed symbols.
+       Comments fixed.  Use renamed symbols.
 
-       * dispnew.c: Comment fix. Use renamed symbols.
+       * dispnew.c: Comment fix.  Use renamed symbols.
 
        * frame.h (FRAME_FRINGE_COLS): Renamed from FRAME_FLAGS_AREA_COLS.
        (FRAME_FRINGE_WIDTH): Renamed from FRAME_FLAGS_AREA_WIDTH.
 
        * w32fns.c: Use renamed symbols.
 
-       * w32term.c: Comment fixes. Use renamed symbols.
+       * w32term.c: Comment fixes.  Use renamed symbols.
        (fringe_bitmap_type): Renamed from bitmap_type.
        (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
        (w32_draw_fringe_bitmap): Renamed from w32_draw_bitmap.
        (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
 
-       * w32term.h: Comment fixes. Use renamed symbols.
+       * w32term.h: Comment fixes.  Use renamed symbols.
        (fringes_extra): Renamed from flags_areas_extra.
        (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
        (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
 
        * widget.c: Use renamed symbols.
 
-       * window.c: Comment fixes. Use renamed symbols.
+       * window.c: Comment fixes.  Use renamed symbols.
        (coordinates-in-window-p): Doc fix.
 
-       * xdisp.c: Comment fixes. Use renamed symbols.
+       * xdisp.c: Comment fixes.  Use renamed symbols.
 
        * xfaces.c (realize_basic_faces): Use FRINGE_FACE_ID.
 
        * xfns.c: Use renamed symbols.
 
-       * xterm.c: Comment fixes. Use renamed symbols.
+       * xterm.c: Comment fixes.  Use renamed symbols.
        (fringe_bitmap_type): Renamed from bitmap_type.
        (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
        (x_draw_fringe_bitmap): Renamed from x_draw_bitmap.
        (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
 
-       * xterm.h: Comment fixes. Use renamed symbols.
+       * xterm.h: Comment fixes.  Use renamed symbols.
        (fringes_extra): Renamed from flags_areas_extra.
        (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
        (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
 2001-11-12  Jason Rumney  <jasonr@gnu.org>
 
        * w32console.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
-       * w32term.c: Change doc-string comments to `new style'.
-       [w/`doc:' keyword]. Doc fixes.
+       * w32term.c: Change doc-string comments to `new style'
+       [w/`doc:' keyword].  Doc fixes.
 
        * w32fns.c: Don't define max.
        (Fx_open_connection): Only execute once.
 2001-11-10  Jason Rumney  <jasonr@gnu.org>
 
        * w32fns.c (enum_font_cb2): Use leading @ on face name to detect
-       vertical fonts. Allow them if face name is explicitly specified.
+       vertical fonts.  Allow them if face name is explicitly specified.
        Do not give up if we find a font that cannot be converted to an xlfd.
 
 2001-11-10  Gerd Moellmann  <gerd@gnu.org>
        full-width rows.
        (x_dump_glyph_string): Put in #if GLYPH_DEBUG.
        (w32_draw_relief_rect): Extend left shadow to the bottom and left;
-       change bottom shadow accordingly. Some cleanup.
+       change bottom shadow accordingly.  Some cleanup.
        (x_update_window_end): Handle overwritten mouse face
        also for tool bar windows.
        (show_mouse_face): Set the glyph row's mouse_face_p flag also when
        (Fv_max_tooltip_size): New variable.
        (syns_of_xfns): DEFVAR_LISP it.
        (Fx_show_tip): Add parameter TEXT.  Set the tip frame's root
-       window buffer to *tip* right after creating the frame. Set frame's
+       window buffer to *tip* right after creating the frame.  Set frame's
        window_width.  Use a maximum tooltip size specified by
        Vx_max_tooltip_size, if that has valid contents.
        (compute_tip_xy): Add parameters WIDTH and HEIGHT.