diff options
| -rw-r--r-- | lisp/simple.el | 2 |
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\ | |||
| 2520 | select the completion near point.\n\n")) | 2520 | select 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 | ||