mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-03 04:21:28 -08:00
(quail-start-translation): Call
this-single-command-raw-keys instead of this-single-command-keys. (quail-start-conversion): Likewise.
This commit is contained in:
parent
07474fef28
commit
ab6ecce200
1 changed files with 2 additions and 2 deletions
|
|
@ -903,7 +903,7 @@ The returned value is a Quail map specific to KEY."
|
|||
(while quail-translating
|
||||
(let* ((echo-keystrokes 0)
|
||||
(keyseq (read-key-sequence nil))
|
||||
(events (this-single-command-keys))
|
||||
(events (this-single-command-raw-keys))
|
||||
(cmd (lookup-key translation-keymap keyseq)))
|
||||
(if (commandp cmd)
|
||||
(progn
|
||||
|
|
@ -951,7 +951,7 @@ The returned value is a Quail map specific to KEY."
|
|||
(quail-setup-overlays nil)))
|
||||
(let* ((echo-keystrokes 0)
|
||||
(keyseq (read-key-sequence nil))
|
||||
(events (this-single-command-keys))
|
||||
(events (this-single-command-raw-keys))
|
||||
(cmd (lookup-key conversion-keymap keyseq)))
|
||||
(if (commandp cmd)
|
||||
(progn
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue