aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLuc Teirlinck2004-07-06 23:36:45 +0000
committerLuc Teirlinck2004-07-06 23:36:45 +0000
commit669de2fb7f2c4a99718e67c65bda03f521e979cb (patch)
tree6f653a83ff089bbabd476739a8ca60ecacfaa42c /src
parentd1d70b6ea7131dea005c88ef6e662cd19c8bf460 (diff)
downloademacs-669de2fb7f2c4a99718e67c65bda03f521e979cb.tar.gz
emacs-669de2fb7f2c4a99718e67c65bda03f521e979cb.zip
(syms_of_keyboard): Fix `keyboard-translate-table' docstring.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/keyboard.c12
2 files changed, 10 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7bf6f118885..758118e3236 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12004-07-06 Luc Teirlinck <teirllm@auburn.edu> 12004-07-06 Luc Teirlinck <teirllm@auburn.edu>
2 2
3 * keyboard.c (syms_of_keyboard): Fix `keyboard-translate-table'
4 docstring.
5
3 * fns.c (Fclear_string): Declare `len' before call to CHECK_STRING. 6 * fns.c (Fclear_string): Declare `len' before call to CHECK_STRING.
4 7
52004-07-06 John Paul Wallington <jpw@gnu.org> 82004-07-06 John Paul Wallington <jpw@gnu.org>
diff --git a/src/keyboard.c b/src/keyboard.c
index 9b36e96b70d..f016a1283e4 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -11151,11 +11151,13 @@ Useful to set before you dump a modified Emacs. */);
11151 11151
11152 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table, 11152 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
11153 doc: /* Translate table for keyboard input, or nil. 11153 doc: /* Translate table for keyboard input, or nil.
11154Each character is looked up in this string and the contents used instead. 11154If non-nil, the value should be a char-table. Each character read
11155The value may be a string, a vector, or a char-table. 11155from the keyboard is looked up in this char-table. If the value found
11156If it is a string or vector of length N, 11156there is non-nil, then it is used instead of the actual input character.
11157character codes N and up are untranslated. 11157
11158In a vector or a char-table, an element which is nil means "no translation". 11158The value can also be a string or vector, but this is considered obsolete.
11159If it is a string or vector of length N, character codes N and up are left
11160untranslated. In a vector, an element which is nil means "no translation".
11159 11161
11160This is applied to the characters supplied to input methods, not their 11162This is applied to the characters supplied to input methods, not their
11161output. See also `translation-table-for-input'. */); 11163output. See also `translation-table-for-input'. */);