From 55b933cf8f89bfdd8bcd8f201238da6e6a122c57 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 5 May 1996 17:32:15 +0000 Subject: [PATCH] (iso-accents-compose): Don't insert in the buffer if this is not the start of the key sequence. --- lisp/international/iso-acc.el | 2 ++ 1 file changed, 2 insertions(+) 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).") (second-char (if (or prompt (not (eq (key-binding "a") 'self-insert-command)) + ;; Not at start of a key sequence. + (> (length (this-single-command-keys)) 1) ;; Called from anything but the command loop. this-command) (progn -- 2.39.2