aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorEli Zaretskii2015-01-10 13:27:35 +0200
committerEli Zaretskii2015-01-10 13:27:35 +0200
commit485763c0dcdc4f5ab1030f4bae6acbbe0ce9497e (patch)
treed5920af2c0ef767a62051a5797ad60ddaca8efdc /src/ChangeLog
parentc2208b3d913c2e53b96d7f11b31422a57366f601 (diff)
downloademacs-485763c0dcdc4f5ab1030f4bae6acbbe0ce9497e.tar.gz
emacs-485763c0dcdc4f5ab1030f4bae6acbbe0ce9497e.zip
MS-Windows followup for change in semantics of XIL and XLI. (Bug#15880)
src/w32fns.c (Fw32_register_hot_key): Use XINT instead of XLI. src/w32notify.c (Fw32notify_add_watch, w32_get_watch_object): Use make_pointer_integer instead of XIL. (Fw32notify_rm_watch): Use XINTPTR instead of XLI. src/w32inevt.c (handle_file_notifications): Use make_pointer_integer instead of XIL. Put a list of the descriptor, action, and file name in event->arg, instead of spreading them between event->code and event->arg. src/w32term.c (queue_notifications): Use make_pointer_integer instead of XIL. Put a list of the descriptor, action, and file name in event->arg, instead of spreading them between event->code and event->arg. src/keyboard.c (kbd_buffer_get_event) [HAVE_W32NOTIFY]: Adjust Lisp event creation to changes in w32term.c and w32inevt.c above.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c11ba11715b..b6358d0e66d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,24 @@
12015-01-10 Eli Zaretskii <eliz@gnu.org>
2
3 * w32fns.c (Fw32_register_hot_key): Use XINT instead of XLI.
4
5 * w32notify.c (Fw32notify_add_watch, w32_get_watch_object): Use
6 make_pointer_integer instead of XIL.
7 (Fw32notify_rm_watch): Use XINTPTR instead of XLI.
8
9 * w32inevt.c (handle_file_notifications): Use make_pointer_integer
10 instead of XIL. Put a list of the descriptor, action, and file
11 name in event->arg, instead of spreading them between event->code
12 and event->arg.
13
14 * w32term.c (queue_notifications): Use make_pointer_integer
15 instead of XIL. Put a list of the descriptor, action, and file
16 name in event->arg, instead of spreading them between event->code
17 and event->arg.
18
19 * keyboard.c (kbd_buffer_get_event) [HAVE_W32NOTIFY]: Adjust Lisp
20 event creation to changes in w32term.c and w32inevt.c above.
21
12015-01-09 Paul Eggert <eggert@cs.ucla.edu> 222015-01-09 Paul Eggert <eggert@cs.ucla.edu>
2 23
3 Refactor pointer-to-integer conversion 24 Refactor pointer-to-integer conversion