diff options
| author | Eli Zaretskii | 2018-02-24 11:30:02 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2018-02-24 11:30:02 +0200 |
| commit | 7e7f2ea644388d6d06a4ab6690344f7f7c128141 (patch) | |
| tree | 26233a527032264112f5c95f5310a141566533ad /src | |
| parent | c0676d483d57b24a6f91867a4db2cd869041b249 (diff) | |
| download | emacs-7e7f2ea644388d6d06a4ab6690344f7f7c128141.tar.gz emacs-7e7f2ea644388d6d06a4ab6690344f7f7c128141.zip | |
* src/keyboard.c (syms_of_keyboard): Doc fix. (Bug#30588)
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 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. |
| 11746 | It's called with one argument, a printing character that was just read. | 11746 | It's called with one argument, which must be a single-byte |
| 11747 | \(That means a character with code 040...0176.) | 11747 | character that was just read. Any single-byte character is |
| 11748 | acceptable, except the DEL character, codepoint 127 decimal, 177 octal. | ||
| 11748 | Typically this function uses `read-event' to read additional events. | 11749 | Typically this function uses `read-event' to read additional events. |
| 11749 | When it does so, it should first bind `input-method-function' to nil | 11750 | When it does so, it should first bind `input-method-function' to nil |
| 11750 | so it will not be called recursively. | 11751 | so it will not be called recursively. |