From: Richard M. Stallman Date: Fri, 27 May 1994 00:53:21 +0000 (+0000) Subject: (completion-setup-function): Fix up the regexp. X-Git-Tag: emacs-19.34~8155 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aa929936354f75cdb08b0cf51f0e2d0dfcff2f23;p=emacs.git (completion-setup-function): Fix up the regexp. --- 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))))))