emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master a1f9e7b 3/5: Merge from origin/emacs-27


From: Glenn Morris
Subject: master a1f9e7b 3/5: Merge from origin/emacs-27
Date: Thu, 13 Aug 2020 11:28:48 -0400 (EDT)

branch: master
commit a1f9e7beea337b5b7c5accb7780101f5e0cdd357
Merge: 4431e6e 63f614d
Author: Glenn Morris <rgm@gnu.org>
Commit: Glenn Morris <rgm@gnu.org>

    Merge from origin/emacs-27
    
    63f614d76c Fix comint-redirect-results-list regexp usage (Bug#42662)
---
 lisp/comint.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/comint.el b/lisp/comint.el
index c3cb439..df4937a 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -3852,7 +3852,7 @@ REGEXP-GROUP is the regular expression group in REGEXP to 
use."
       (set-buffer output-buffer)
       (goto-char (point-min))
       ;; Skip past the command, if it was echoed
-      (and (looking-at command)
+      (and (looking-at (regexp-quote command))
           (forward-line))
       (while (and (not (eobp))
                  (re-search-forward regexp nil t))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]