From aa929936354f75cdb08b0cf51f0e2d0dfcff2f23 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 27 May 1994 00:53:21 +0000 Subject: [PATCH] (completion-setup-function): Fix up the regexp. --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index 13c44666a37..88165967892 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2520,7 +2520,7 @@ Use \\\\[mouse-choose-completion] to select one\ select the completion near point.\n\n")) (forward-line 1) (if window-system - (while (re-search-forward "[^ \t\n]+\\( [^\t\n]+\\)*" nil t) + (while (re-search-forward "[^ \t\n]+\\( [^ \t\n]+\\)*" nil t) (put-text-property (match-beginning 0) (point) 'mouse-face 'highlight)))))) -- 2.39.5