diff options
| author | Dmitry Antipov | 2013-09-19 11:48:53 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-09-19 11:48:53 +0400 |
| commit | ced135ebdbfb0eea719ce165a454e7ff0b681e88 (patch) | |
| tree | 17311f84267e23afbd4d1131ea2fe1fa14aa6f55 /src/ChangeLog | |
| parent | f75447737926fd8c898b9e0b77f581f4993a52f1 (diff) | |
| download | emacs-ced135ebdbfb0eea719ce165a454e7ff0b681e88.tar.gz emacs-ced135ebdbfb0eea719ce165a454e7ff0b681e88.zip | |
* xterm.h (struct x_display_info): New members last_mouse_glyph_frame,
last_mouse_scroll_bar, last_mouse_glyph and last_mouse_movement_time,
going to replace static variables below. Adjust comments.
* xterm.c (last_mouse_glyph, last_mouse_glyph_frame)
(last_mouse_scroll_bar, last_mouse_movement_time): Remove.
(note_mouse_movement, XTmouse_position, x_scroll_bar_note_movement)
(x_scroll_bar_report_motion, handle_one_xevent, syms_of_xterm):
Related users changed.
* w32term.h (struct w32_display_info): New members last_mouse_glyph_frame,
last_mouse_scroll_bar, last_mouse_scroll_bar_pos, last_mouse_glyph and
last_mouse_movement_time, going to replace static variables below.
Adjust comments.
* w32term.c (last_mouse_glyph_frame, last_mouse_scroll_bar)
(last_mouse_scroll_bar_pos, last_mouse_glyph, last_mouse_movement_time):
Remove.
(note_mouse_movement, w32_mouse_position, w32_scroll_bar_handle_click)
(x_scroll_bar_report_motion, syms_of_w32term): Related users changed.
* nsterm.h (struct ns_display_info): New members last_mouse_glyph,
last_mouse_movement_time and last_mouse_scroll_bar, going to replace
static variables below.
* nsterm.m (last_mouse_glyph, last_mouse_movement_time)
(last_mouse_scroll_bar): Remove.
(note_mouse_movement, ns_mouse_position, mouseMoved, mouseEntered)
(mouseExited): Related users changed.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2a931693f62..d900818231e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,32 @@ | |||
| 1 | 2013-09-19 Dmitry Antipov <dmantipov@yandex.ru> | 1 | 2013-09-19 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 2 | ||
| 3 | * xterm.h (struct x_display_info): New members last_mouse_glyph_frame, | ||
| 4 | last_mouse_scroll_bar, last_mouse_glyph and last_mouse_movement_time, | ||
| 5 | going to replace static variables below. Adjust comments. | ||
| 6 | * xterm.c (last_mouse_glyph, last_mouse_glyph_frame) | ||
| 7 | (last_mouse_scroll_bar, last_mouse_movement_time): Remove. | ||
| 8 | (note_mouse_movement, XTmouse_position, x_scroll_bar_note_movement) | ||
| 9 | (x_scroll_bar_report_motion, handle_one_xevent, syms_of_xterm): | ||
| 10 | Related users changed. | ||
| 11 | * w32term.h (struct w32_display_info): New members last_mouse_glyph_frame, | ||
| 12 | last_mouse_scroll_bar, last_mouse_scroll_bar_pos, last_mouse_glyph and | ||
| 13 | last_mouse_movement_time, going to replace static variables below. | ||
| 14 | Adjust comments. | ||
| 15 | * w32term.c (last_mouse_glyph_frame, last_mouse_scroll_bar) | ||
| 16 | (last_mouse_scroll_bar_pos, last_mouse_glyph, last_mouse_movement_time): | ||
| 17 | Remove. | ||
| 18 | (note_mouse_movement, w32_mouse_position, w32_scroll_bar_handle_click) | ||
| 19 | (x_scroll_bar_report_motion, syms_of_w32term): Related users changed. | ||
| 20 | * nsterm.h (struct ns_display_info): New members last_mouse_glyph, | ||
| 21 | last_mouse_movement_time and last_mouse_scroll_bar, going to replace | ||
| 22 | static variables below. | ||
| 23 | * nsterm.m (last_mouse_glyph, last_mouse_movement_time) | ||
| 24 | (last_mouse_scroll_bar): Remove. | ||
| 25 | (note_mouse_movement, ns_mouse_position, mouseMoved, mouseEntered) | ||
| 26 | (mouseExited): Related users changed. | ||
| 27 | |||
| 28 | 2013-09-19 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 29 | |||
| 3 | Do not use external array to process X scroll bar messages. | 30 | Do not use external array to process X scroll bar messages. |
| 4 | * xterm.c (scroll_bar_windows, scroll_bar_windows_size): Remove. | 31 | * xterm.c (scroll_bar_windows, scroll_bar_windows_size): Remove. |
| 5 | (x_send_scroll_bar_event): Pack window pointer into two slots | 32 | (x_send_scroll_bar_event): Pack window pointer into two slots |