aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-05-05 17:32:15 +0000
committerRichard M. Stallman1996-05-05 17:32:15 +0000
commit55b933cf8f89bfdd8bcd8f201238da6e6a122c57 (patch)
tree81656e9576228c86034c6c909a1dca51936038db
parent46b9324699f1aecae1b149c9346a341a42bf0381 (diff)
downloademacs-55b933cf8f89bfdd8bcd8f201238da6e6a122c57.tar.gz
emacs-55b933cf8f89bfdd8bcd8f201238da6e6a122c57.zip
(iso-accents-compose): Don't insert in the buffer
if this is not the start of the key sequence.
-rw-r--r--lisp/international/iso-acc.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/international/iso-acc.el b/lisp/international/iso-acc.el
index 95e72dc15c1..d1363476590 100644
--- a/lisp/international/iso-acc.el
+++ b/lisp/international/iso-acc.el
@@ -193,6 +193,8 @@ the language you choose).")
193 (second-char (if (or prompt 193 (second-char (if (or prompt
194 (not (eq (key-binding "a") 194 (not (eq (key-binding "a")
195 'self-insert-command)) 195 'self-insert-command))
196 ;; Not at start of a key sequence.
197 (> (length (this-single-command-keys)) 1)
196 ;; Called from anything but the command loop. 198 ;; Called from anything but the command loop.
197 this-command) 199 this-command)
198 (progn 200 (progn