]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix input method translation near read-only text
authorEli Zaretskii <eliz@gnu.org>
Sat, 14 Nov 2020 13:20:30 +0000 (15:20 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 14 Nov 2020 13:20:30 +0000 (15:20 +0200)
* lisp/international/quail.el (quail-input-method): Don't disable
input method when the character after point has the read-only
property.  Suggested by Evgeny Zajcev <lg.zevlg@gmail.com>
(Bug#44466)

* doc/emacs/mule.texi (Input Methods): Document that input methods
are inhibited in read-only text.

doc/emacs/mule.texi
lisp/international/quail.el

index 0f07d286cda484981b9ddff93f3f25654d2a8077..3421ce6690480c92c5850ace6a0f7d8438837f14 100644 (file)
@@ -563,6 +563,12 @@ method's keys by defining key bindings in the keymap returned by the
 function @code{quail-translation-keymap}, using @code{define-key}.
 @xref{Init Rebinding}.
 
+  Input methods are inhibited when the text in the buffer is read-only
+for some reason.  This is so single-character key bindings work in
+modes that make buffer text or parts of it read-only, such as
+@code{read-only-mode} and @code{image-mode}, even when an input method
+is active.
+
   Another facility for typing characters not on your keyboard is by
 using @kbd{C-x 8 @key{RET}} (@code{insert-char}) to insert a single
 character based on its Unicode name or code-point; see @ref{Inserting
index 3299cc55a28ef04812cd627abb72b3a99825b544..63371bce4fbbfeda681a53aa5cd93c3468ef710e 100644 (file)
@@ -1330,7 +1330,8 @@ If STR has `advice' text property, append the following special event:
 
 (defun quail-input-method (key)
   (if (or (and (or buffer-read-only
-                   (get-char-property (point) 'read-only))
+                   (and (get-char-property (point) 'read-only)
+                        (get-char-property (point) 'front-sticky)))
               (not (or inhibit-read-only
                        (get-char-property (point) 'inhibit-read-only))))
          (and overriding-terminal-local-map