]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix to clear echo-area after repeat-exit-timeout.
authorGabriel do Nascimento Ribeiro <gabriel376@hotmail.com>
Mon, 23 Aug 2021 22:05:58 +0000 (19:05 -0300)
committerJuri Linkov <juri@linkov.net>
Tue, 24 Aug 2021 06:44:05 +0000 (09:44 +0300)
* lisp/repeat.el (repeat-echo-message): Use 'string-match-p'
to handle cases where echo-area contains other messages (bug#50176).

lisp/repeat.el

index cec3cb643a13b5dd1dce58f8dd55d2251f4f696e..054eacf8ec98beebabd4f0d248c3f163e91474a9 100644 (file)
@@ -474,7 +474,7 @@ When Repeat mode is enabled, and the command symbol has the property named
         (if (current-message)
             (message "%s [%s]" (current-message) mess)
           (message mess)))
-    (when (string-prefix-p "Repeat with " (current-message))
+    (when (string-match-p "Repeat with " (current-message))
       (message nil))))
 
 (defvar repeat-echo-mode-line-string