aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2003-02-18 10:57:39 +0000
committerJuanma Barranquero2003-02-18 10:57:39 +0000
commit69aac59d2acddd11916c35b7fc7c96d04d7ed0c4 (patch)
treedee906aa86f686d1e634bdc8d7369ec9b65eec3b
parentf4ae0b8bbbacd5a0ec00b5be1bc0cd110e71db1a (diff)
downloademacs-69aac59d2acddd11916c35b7fc7c96d04d7ed0c4.tar.gz
emacs-69aac59d2acddd11916c35b7fc7c96d04d7ed0c4.zip
(mouse-sel-determine-selection-thing): Fix character constant.
-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."
345 ((= nclicks 3) 'line) 345 ((= nclicks 3) 'line)
346 ((>= nclicks 4) 'paragraph) 346 ((>= nclicks 4) 'paragraph)
347 ((memq char-syntax '(?\( ?\) ?\" ?')) 'sexp) 347 ((memq char-syntax '(?\( ?\) ?\" ?')) 'sexp)
348 ((memq next-char '(? ?\t ?\n)) 'whitespace) 348 ((memq next-char '(?\s ?\t ?\n)) 'whitespace)
349 ((eq char-syntax ?_) 'symbol) 349 ((eq char-syntax ?_) 'symbol)
350 ((eq char-syntax ?w) 'word)))) 350 ((eq char-syntax ?w) 'word))))
351 351