comparison src/file-coding.c @ 3142:77f5a5135b3a

[xemacs-hg @ 2005-12-17 19:46:57 by aidan] Fix self-insert-command with X11 input methods. Addresses Zhang Wei's problem of 871x118lc4.fsf@gmail.com.
author aidan
date Sat, 17 Dec 2005 19:47:03 +0000
parents facf3239ba30
children d674024a8674
comparison
equal deleted inserted replaced
3141:66c42fc5d26b 3142:77f5a5135b3a
4598 4598
4599 Fprovide (intern ("unix-default-eol-detection")); 4599 Fprovide (intern ("unix-default-eol-detection"));
4600 #endif 4600 #endif
4601 4601
4602 DEFVAR_LISP ("keyboard-coding-system", &Vkeyboard_coding_system /* 4602 DEFVAR_LISP ("keyboard-coding-system", &Vkeyboard_coding_system /*
4603 Coding system used for TTY keyboard input. 4603 Default coding system used for TTY and X11 keyboard input.
4604 Not used under a windowing system. 4604 Under X11, used only to interpet the character for a key event when that
4605 event has a KeySym of NoSymbol but does have an associated string keysym,
4606 something that's seen with input methods.
4607
4608 If you need to set these things to different coding systems, call the
4609 function `set-console-tty-coding-system' for the TTY and use this variable
4610 for X11.
4605 */ ); 4611 */ );
4606 Vkeyboard_coding_system = Qnil; 4612 Vkeyboard_coding_system = Qnil;
4607 4613
4608 DEFVAR_LISP ("terminal-coding-system", &Vterminal_coding_system /* 4614 DEFVAR_LISP ("terminal-coding-system", &Vterminal_coding_system /*
4609 Coding system used for TTY display output. 4615 Coding system used for TTY display output.