aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-05-27 00:53:21 +0000
committerRichard M. Stallman1994-05-27 00:53:21 +0000
commitaa929936354f75cdb08b0cf51f0e2d0dfcff2f23 (patch)
treeede994a80b510925292732bd1ae7adffd9e9388d
parent63240af11720e7c6d9fd75f026a198d0090e39a2 (diff)
downloademacs-aa929936354f75cdb08b0cf51f0e2d0dfcff2f23.tar.gz
emacs-aa929936354f75cdb08b0cf51f0e2d0dfcff2f23.zip
(completion-setup-function): Fix up the regexp.
-rw-r--r--lisp/simple.el2
1 files changed, 1 insertions, 1 deletions
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 \\<completion-list-mode-map>\\[mouse-choose-completion] to select one\
2520select the completion near point.\n\n")) 2520select the completion near point.\n\n"))
2521 (forward-line 1) 2521 (forward-line 1)
2522 (if window-system 2522 (if window-system
2523 (while (re-search-forward "[^ \t\n]+\\( [^\t\n]+\\)*" nil t) 2523 (while (re-search-forward "[^ \t\n]+\\( [^ \t\n]+\\)*" nil t)
2524 (put-text-property (match-beginning 0) (point) 2524 (put-text-property (match-beginning 0) (point)
2525 'mouse-face 'highlight)))))) 2525 'mouse-face 'highlight))))))
2526 2526