diff options
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 |