>From 8c30a1c51214058f28014953fc5b23d3cf9e3826 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 ef285db57e..d0f2a2e24d 100644 --- a/lisp/pcomplete.el +++ b/lisp/pcomplete.el @@ -768,7 +768,7 @@ pcomplete-parse-comint-arguments (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.20.1