changeset 7698:3d3717bb5405

(completion-setup-function): Fix up the regexp.
author Richard M. Stallman <rms@gnu.org>
date Fri, 27 May 1994 00:53:21 +0000
parents b52a92ea3796
children 87513c7850f9
files lisp/simple.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/simple.el	Thu May 26 23:15:32 1994 +0000
+++ b/lisp/simple.el	Fri May 27 00:53:21 1994 +0000
@@ -2520,7 +2520,7 @@
 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))))))