From d081450f379686a7794ff3484116fbc510c86fc0 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 20 Mar 2019 09:23:05 -0700 Subject: [PATCH] Fix pcomplete typo in recent regex typo fix Problem reported by Stefan Monnier in: https://lists.gnu.org/r/emacs-devel/2019-03/msg00682.html * lisp/pcomplete.el (pcomplete-parse-comint-arguments): Restore the trailing backslash (but two of them this time). --- lisp/pcomplete.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/pcomplete.el b/lisp/pcomplete.el index ef285db57e8..d0f2a2e24d1 100644 --- a/lisp/pcomplete.el +++ b/lisp/pcomplete.el @@ -768,7 +768,7 @@ this is `comint-dynamic-complete-functions'." (push (point) begins) (while (progn - (skip-chars-forward "^ \t\n") + (skip-chars-forward "^ \t\n\\\\") (when (eq (char-after) ?\\) (forward-char 1) (unless (eolp) -- 2.39.5