Make quail-input-method work when inhibit-read-only is non-nil (bug#29504)
* lisp/international/quail.el (quail-input-method): Work not only when buffer-read-only is nil but also when inhibit-read-only is non-nil (bug#29504).
This commit is contained in:
parent
87baf1242e
commit
5bcd468a9e
1 changed files with 3 additions and 1 deletions
|
@ -1330,7 +1330,9 @@ If STR has `advice' text property, append the following special event:
|
|||
(defvar quail-conversion-str nil)
|
||||
|
||||
(defun quail-input-method (key)
|
||||
(if (or buffer-read-only
|
||||
(if (or (and buffer-read-only
|
||||
(not (or inhibit-read-only
|
||||
(get-char-property (point) 'inhibit-read-only))))
|
||||
(and overriding-terminal-local-map
|
||||
;; If the overriding map is `universal-argument-map', that
|
||||
;; must mean the user has pressed 'C-u KEY'. If KEY has a
|
||||
|
|
Loading…
Add table
Reference in a new issue