Allow active region when IM is used
* lisp/international/quail.el (quail-minibuffer-message): Bind deactivate-mark to allow setting active region in the minibuffer when an input method is used. (Bug#62709)
This commit is contained in:
parent
305246d972
commit
cb8c87a423
1 changed files with 2 additions and 1 deletions
|
@ -1995,7 +1995,8 @@ Remaining args are for FUNC."
|
||||||
(defun quail-minibuffer-message (string)
|
(defun quail-minibuffer-message (string)
|
||||||
(message nil)
|
(message nil)
|
||||||
(let ((point-max (point-max))
|
(let ((point-max (point-max))
|
||||||
(inhibit-quit t))
|
(inhibit-quit t)
|
||||||
|
(deactivate-mark nil))
|
||||||
(save-excursion
|
(save-excursion
|
||||||
(goto-char point-max)
|
(goto-char point-max)
|
||||||
(insert string))
|
(insert string))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue