diff options
| author | Dmitry Antipov | 2013-09-16 15:23:03 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-09-16 15:23:03 +0400 |
| commit | 83a119f8d892a790b25bd0d856df82fb25b0ba72 (patch) | |
| tree | 7eb161993b9e394f689c9f50f38a8d692aa8945f /src/ChangeLog | |
| parent | 61582e6aadc24dda730055d9907e7c053dd6218b (diff) | |
| download | emacs-83a119f8d892a790b25bd0d856df82fb25b0ba72.tar.gz emacs-83a119f8d892a790b25bd0d856df82fb25b0ba72.zip | |
* xterm.c (toolkit_scroll_bar_interaction): Use bool for boolean.
(ignore_next_mouse_click_timeout): Use Time as X does.
(handle_one_xevent): Avoid cast and use unsigned comparison.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4b862f27a02..d53f1414917 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,11 @@ | |||
| 1 | 2013-09-16 Dmitry Antipov <dmantipov@yandex.ru> | 1 | 2013-09-16 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 2 | ||
| 3 | * xterm.c (toolkit_scroll_bar_interaction): Use bool for boolean. | ||
| 4 | (ignore_next_mouse_click_timeout): Use Time as X does. | ||
| 5 | (handle_one_xevent): Avoid cast and use unsigned comparison. | ||
| 6 | |||
| 7 | 2013-09-16 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 8 | |||
| 3 | Do not copy X event in handle_one_xevent except KeyPress case. | 9 | Do not copy X event in handle_one_xevent except KeyPress case. |
| 4 | Wnen XEvent is processed, it is unlikely to be changed except | 10 | Wnen XEvent is processed, it is unlikely to be changed except |
| 5 | KeyPress case, so we can avoid copying and use const pointer to | 11 | KeyPress case, so we can avoid copying and use const pointer to |