aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorKaroly Lorentey2005-12-12 02:37:01 +0000
committerKaroly Lorentey2005-12-12 02:37:01 +0000
commitd68058039e1ff5635b2e44509fc242de4f0a286f (patch)
tree407ca738e65d6bd9a7d37305c7cff86961de95ea /src/coding.c
parentbe3d2d66d2dff979604134c5dc5fb506ded4aa54 (diff)
downloademacs-d68058039e1ff5635b2e44509fc242de4f0a286f.tar.gz
emacs-d68058039e1ff5635b2e44509fc242de4f0a286f.zip
Fix "first non-ASCII character on new tty frames" problem.
* src/keyboard.c (kbd_buffer_store_event_hold): Simplify condition. (read_key_sequence): Reinitialize fkey and keytran at each replay. * src/coding.c (Fkeyboard_coding_system): Update doc. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-449
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c
index 5658a8ab09a..d032f8c9483 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -7411,7 +7411,9 @@ DEFUN ("set-keyboard-coding-system-internal", Fset_keyboard_coding_system_intern
7411 7411
7412DEFUN ("keyboard-coding-system", Fkeyboard_coding_system, 7412DEFUN ("keyboard-coding-system", Fkeyboard_coding_system,
7413 Skeyboard_coding_system, 0, 1, 0, 7413 Skeyboard_coding_system, 0, 1, 0,
7414 doc: /* Return coding system specified for decoding keyboard input. */) 7414 doc: /* Return coding system for decoding keyboard input on DEVICE.
7415DEVICE may be a display device id, a frame, or nil for the selected
7416frame's display device. */)
7415 (device) 7417 (device)
7416 Lisp_Object device; 7418 Lisp_Object device;
7417{ 7419{