]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/keyboard.c (syms_of_keyboard): Doc fix. (Bug#30588)
authorEli Zaretskii <eliz@gnu.org>
Sat, 24 Feb 2018 09:30:02 +0000 (11:30 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 24 Feb 2018 09:30:02 +0000 (11:30 +0200)
src/keyboard.c

index 16744acba888212c7fd6ec0aebc50d4d026963d6..e62dd0ec4896921a82bc82cddb1c9c9228550749 100644 (file)
@@ -11743,8 +11743,9 @@ immediately after running `post-command-hook'.  */);
 
   DEFVAR_LISP ("input-method-function", Vinput_method_function,
               doc: /* If non-nil, the function that implements the current input method.
-It's called with one argument, a printing character that was just read.
-\(That means a character with code 040...0176.)
+It's called with one argument, which must be a single-byte
+character that was just read.  Any single-byte character is
+acceptable, except the DEL character, codepoint 127 decimal, 177 octal.
 Typically this function uses `read-event' to read additional events.
 When it does so, it should first bind `input-method-function' to nil
 so it will not be called recursively.