diff options
| -rw-r--r-- | lisp/international/mule-cmds.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index 69d4d933d02..894f2f70216 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el | |||
| @@ -286,7 +286,10 @@ wrong, use this command again to toggle back to the right mode." | |||
| 286 | (format "Command to execute with %s:" coding-system))) | 286 | (format "Command to execute with %s:" coding-system))) |
| 287 | (cmd (key-binding keyseq)) | 287 | (cmd (key-binding keyseq)) |
| 288 | prefix) | 288 | prefix) |
| 289 | 289 | ;; read-key-sequence ignores quit, so make an explicit check. | |
| 290 | ;; Like many places, this assumes quit == C-g, but it need not be. | ||
| 291 | (if (char-equal last-input-char ?\C-g) | ||
| 292 | (keyboard-quit)) | ||
| 290 | (when (memq cmd '(universal-argument digit-argument)) | 293 | (when (memq cmd '(universal-argument digit-argument)) |
| 291 | (call-interactively cmd) | 294 | (call-interactively cmd) |
| 292 | 295 | ||