From: Paul Eggert Date: Wed, 20 Mar 2019 16:23:05 +0000 (-0700) Subject: Fix pcomplete typo in recent regex typo fix X-Git-Tag: emacs-27.0.90~3381 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d081450f379686a7794ff3484116fbc510c86fc0;p=emacs.git 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). --- 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)