diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 75fbe459b2b..9b8d275d0fd 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -11735,8 +11735,9 @@ immediately after running `post-command-hook'. */); | |||
| 11735 | 11735 | ||
| 11736 | DEFVAR_LISP ("input-method-function", Vinput_method_function, | 11736 | DEFVAR_LISP ("input-method-function", Vinput_method_function, |
| 11737 | doc: /* If non-nil, the function that implements the current input method. | 11737 | doc: /* If non-nil, the function that implements the current input method. |
| 11738 | It's called with one argument, a printing character that was just read. | 11738 | It's called with one argument, which must be a single-byte |
| 11739 | \(That means a character with code 040...0176.) | 11739 | character that was just read. Any single-byte character is |
| 11740 | acceptable, except the DEL character, codepoint 127 decimal, 177 octal. | ||
| 11740 | Typically this function uses `read-event' to read additional events. | 11741 | Typically this function uses `read-event' to read additional events. |
| 11741 | When it does so, it should first bind `input-method-function' to nil | 11742 | When it does so, it should first bind `input-method-function' to nil |
| 11742 | so it will not be called recursively. | 11743 | so it will not be called recursively. |