comparison src/ChangeLog @ 59580:f43d0816e9c3

* keyboard.c (READABLE_EVENTS_DO_TIMERS_NOW) (READABLE_EVENTS_FILTER_EVENTS) (READABLE_EVENTS_IGNORE_SQUEEZABLES): New flags for readable_events. get_filtered_input_pending, readable_filtered_events): Removed. (tracking_off): Call readable_events and get_input_pending with flag READABLE_EVENTS_DO_TIMERS_NOW. (readable_events): Move code from old readable_filtered_events here, but check new READABLE_EVENTS_* in argument flags instead of previous two boolean arguments do_timers_now and filter_events. If we are doing mouse tracking and the mouse moved, return only if READABLE_EVENTS_IGNORE_SQUEEZABLES is not set in flags. (swallow_events): Call get_input_pending with flag READABLE_EVENTS_DO_TIMERS_NOW. (get_input_pending): Move code from old get_filtered_input_pending here. Replace boolean arguments do_timers_now, filter_events with flags, and pass flags to readable_events. Document new READABLE_EVENTS_* flags. (detect_input_pending_ignore_squeezables): New function. (detect_input_pending_run_timers): Call get_input_pending with flag READABLE_EVENTS_DO_TIMERS_NOW. (Finput_pending_p): Call get_input_pending with flags READABLE_EVENTS_DO_TIMERS_NOW and READABLE_EVENTS_FILTER_EVENTS. * dispnew.c (update_window, update_frame_1): Replace calls to detect_input_pending with detect_input_pending_ignore_squeezables so that redisplay is not paused if the event queue contains only mouse movements. * lisp.h: Declare detect_input_pending_ignore_squeezables.
author Jan Djärv <jan.h.d@swipnet.se>
date Sun, 16 Jan 2005 09:17:02 +0000
parents 10f083976969
children 26fb5a3f95ac
comparison
equal deleted inserted replaced
59579:a588c86a429c 59580:f43d0816e9c3
1 2005-01-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * keyboard.c (READABLE_EVENTS_DO_TIMERS_NOW)
4 (READABLE_EVENTS_FILTER_EVENTS)
5 (READABLE_EVENTS_IGNORE_SQUEEZABLES): New flags for readable_events.
6 get_filtered_input_pending, readable_filtered_events): Removed.
7 (tracking_off): Call readable_events and get_input_pending with
8 flag READABLE_EVENTS_DO_TIMERS_NOW.
9 (readable_events): Move code from old readable_filtered_events here,
10 but check new READABLE_EVENTS_* in argument flags instead of previous
11 two boolean arguments do_timers_now and filter_events.
12 If we are doing mouse tracking and the mouse moved, return only if
13 READABLE_EVENTS_IGNORE_SQUEEZABLES is not set in flags.
14 (swallow_events): Call get_input_pending with flag
15 READABLE_EVENTS_DO_TIMERS_NOW.
16 (get_input_pending): Move code from old get_filtered_input_pending
17 here. Replace boolean arguments do_timers_now, filter_events with
18 flags, and pass flags to readable_events. Document new
19 READABLE_EVENTS_* flags.
20 (detect_input_pending_ignore_squeezables): New function.
21 (detect_input_pending_run_timers): Call get_input_pending with flag
22 READABLE_EVENTS_DO_TIMERS_NOW.
23 (Finput_pending_p): Call get_input_pending with flags
24 READABLE_EVENTS_DO_TIMERS_NOW and READABLE_EVENTS_FILTER_EVENTS.
25
26 * dispnew.c (update_window, update_frame_1): Replace calls to
27 detect_input_pending with detect_input_pending_ignore_squeezables
28 so that redisplay is not paused if the event queue contains only
29 mouse movements.
30
31 * lisp.h: Declare detect_input_pending_ignore_squeezables.
32
1 2005-01-15 Steven Tamm <steventamm@mac.com> 33 2005-01-15 Steven Tamm <steventamm@mac.com>
2 34
3 * macterm.c (Vmac_use_core_graphics): defined for 35 * macterm.c (Vmac_use_core_graphics): defined for
4 mac-allow-anti-aliasing 36 mac-allow-anti-aliasing
5 (syms_of_macterm): Added mac-allow-anti-aliasing 37 (syms_of_macterm): Added mac-allow-anti-aliasing