emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/ChangeLog [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/ChangeLog [lexbind]
Date: Tue, 06 Jul 2004 05:59:55 -0400

Index: emacs/src/ChangeLog
diff -c emacs/src/ChangeLog:1.2701.2.29 emacs/src/ChangeLog:1.2701.2.30
*** emacs/src/ChangeLog:1.2701.2.29     Tue Jul  6 09:23:51 2004
--- emacs/src/ChangeLog Tue Jul  6 09:31:25 2004
***************
*** 67,72 ****
--- 67,213 ----
        (Fdocumentation, store_function_docstring): Handle interpreted
        closures.
  
+ 2004-05-29  YAMAMOTO Mitsuharu  <address@hidden>
+ 
+       * 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  <address@hidden>
+ 
+       * 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  <address@hidden>
+ 
+       * 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  <address@hidden>
+ 
+       * 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  <address@hidden>
+ 
+       * process.c (Fdelete_process): Do not call remove_process.
+ 
+ 2004-05-28  Stefan Monnier  <address@hidden>
+ 
+       * 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  <address@hidden>
+ 
+       * 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  <address@hidden>
+ 
+       * 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,Ba(Broly L,Bu(Brentey  <address@hidden>  (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  <address@hidden>
  
        * alloc.c (Fmake_string): Doc fix.
***************
*** 120,126 ****
        (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 symbeg and symend (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.
--- 261,267 ----
        (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.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]