summaryrefslogtreecommitdiff
path: root/lisp/mouse-sel.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2003-02-18 10:57:39 +0000
committerJuanma Barranquero <lekktu@gmail.com>2003-02-18 10:57:39 +0000
commit3d0fa7b5855f947ebeaf5bad8a943c9114f40c8e (patch)
tree9855fd303b09ebcc9fd32dd1d76684540be709cd /lisp/mouse-sel.el
parent320f93f31c36d47e1ec4b2a385a4c397de51a737 (diff)
downloademacs-3d0fa7b5855f947ebeaf5bad8a943c9114f40c8e.tar.gz
(mouse-sel-determine-selection-thing): Fix character constant.
Diffstat (limited to 'lisp/mouse-sel.el')
-rw-r--r--lisp/mouse-sel.el2
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))))