aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorStefan Monnier2013-05-23 13:25:42 -0400
committerStefan Monnier2013-05-23 13:25:42 -0400
commita7eb9b0fbeeaa24d803355fd90d462809916a2d8 (patch)
tree4696206f7fcaf47c38cea418a47ceeb4bb2f0264 /src/ChangeLog
parentfe1eb856c5457a220c7c9cc96030247aaad2a0a3 (diff)
downloademacs-a7eb9b0fbeeaa24d803355fd90d462809916a2d8.tar.gz
emacs-a7eb9b0fbeeaa24d803355fd90d462809916a2d8.zip
Don't apply keyboard decoding to unread-command-events.
* src/keyboard.c: Apply keyboard decoding only to events that come directly from the tty, not from unread-command-events (bug#14368). (read_event_from_main_queue): New function, extracted from read_char). (read_decoded_char): Remove. (read_decoded_event_from_main_queue): New function to replace it. (read_char): Use it. (read_key_sequence): Use read_char rather than read_decoded_char. Fixes: debbugs:14403
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8f97659db33..1d2af4b2a7d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,13 @@
12013-05-23 Stefan Monnier <monnier@iro.umontreal.ca> 12013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * keyboard.c: Apply keyboard decoding only to events that come directly
4 from the tty, not from unread-command-events (bug#14368).
5 (read_event_from_main_queue): New function, extracted from read_char).
6 (read_decoded_char): Remove.
7 (read_decoded_event_from_main_queue): New function to replace it.
8 (read_char): Use it.
9 (read_key_sequence): Use read_char rather than read_decoded_char.
10
3 * keyboard.c (read_decoded_char): Don't decode under w32 (bug#14403). 11 * keyboard.c (read_decoded_char): Don't decode under w32 (bug#14403).
4 12
52013-05-22 Barry OReilly <gundaetiapo@gmail.com> (tiny change) 132013-05-22 Barry OReilly <gundaetiapo@gmail.com> (tiny change)