aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 16744acba88..e62dd0ec489 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -11743,8 +11743,9 @@ immediately after running `post-command-hook'. */);
11743 11743
11744 DEFVAR_LISP ("input-method-function", Vinput_method_function, 11744 DEFVAR_LISP ("input-method-function", Vinput_method_function,
11745 doc: /* If non-nil, the function that implements the current input method. 11745 doc: /* If non-nil, the function that implements the current input method.
11746It's called with one argument, a printing character that was just read. 11746It's called with one argument, which must be a single-byte
11747\(That means a character with code 040...0176.) 11747character that was just read. Any single-byte character is
11748acceptable, except the DEL character, codepoint 127 decimal, 177 octal.
11748Typically this function uses `read-event' to read additional events. 11749Typically this function uses `read-event' to read additional events.
11749When it does so, it should first bind `input-method-function' to nil 11750When it does so, it should first bind `input-method-function' to nil
11750so it will not be called recursively. 11751so it will not be called recursively.