diff options
Diffstat (limited to 'lisp/mouse-sel.el')
-rw-r--r-- | lisp/mouse-sel.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mouse-sel.el b/lisp/mouse-sel.el index f806395489d..bba41a0dbf9 100644 --- a/lisp/mouse-sel.el +++ b/lisp/mouse-sel.el @@ -345,7 +345,7 @@ multi-click semantics." ((= nclicks 3) 'line) ((>= nclicks 4) 'paragraph) ((memq char-syntax '(?\( ?\) ?\" ?')) 'sexp) - ((memq next-char '(? ?\t ?\n)) 'whitespace) + ((memq next-char '(?\s ?\t ?\n)) 'whitespace) ((eq char-syntax ?_) 'symbol) ((eq char-syntax ?w) 'word)))) |