]> git.eshelyaron.com Git - emacs.git/commitdiff
(completion-setup-function): Fix up the regexp.
authorRichard M. Stallman <rms@gnu.org>
Fri, 27 May 1994 00:53:21 +0000 (00:53 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 27 May 1994 00:53:21 +0000 (00:53 +0000)
lisp/simple.el

index 13c44666a3717eb4e86851676adfb0ef3b360dcf..88165967892bd8a31ed672b17846973fac7f881e 100644 (file)
@@ -2520,7 +2520,7 @@ Use \\<completion-list-mode-map>\\[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))))))