mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-10 22:20:51 +00:00
Fix comint-redirect-results-list regexp usage (Bug#42662)
* lisp/comint.el (comint-redirect-results-list-from-process): Don't treat the literal string argument COMMAND as a regexp.
This commit is contained in:
parent
6dada01015
commit
63f614d76c
1 changed files with 1 additions and 1 deletions
|
@ -3835,7 +3835,7 @@ REGEXP-GROUP is the regular expression group in REGEXP to use."
|
||||||
(set-buffer output-buffer)
|
(set-buffer output-buffer)
|
||||||
(goto-char (point-min))
|
(goto-char (point-min))
|
||||||
;; Skip past the command, if it was echoed
|
;; Skip past the command, if it was echoed
|
||||||
(and (looking-at command)
|
(and (looking-at (regexp-quote command))
|
||||||
(forward-line))
|
(forward-line))
|
||||||
(while (and (not (eobp))
|
(while (and (not (eobp))
|
||||||
(re-search-forward regexp nil t))
|
(re-search-forward regexp nil t))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue