diff options
| author | Jan Djärv | 2005-01-16 09:17:02 +0000 |
|---|---|---|
| committer | Jan Djärv | 2005-01-16 09:17:02 +0000 |
| commit | a2d5fca0444b5e1a83d8c84f21674f2ba48d0a26 (patch) | |
| tree | c5f712f5f50816d26220722ae20797f2b7d983d6 /src/ChangeLog | |
| parent | 42187e99f8adc31d93d027b9017160731aab8972 (diff) | |
| download | emacs-a2d5fca0444b5e1a83d8c84f21674f2ba48d0a26.tar.gz emacs-a2d5fca0444b5e1a83d8c84f21674f2ba48d0a26.zip | |
* 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.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index eb87729133d..57be0b86123 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,35 @@ | |||
| 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 |