1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

(mouse-sel-determine-selection-thing): Fix character constant.

This commit is contained in:
Juanma Barranquero 2003-02-18 10:57:39 +00:00
parent f4ae0b8bbb
commit 69aac59d2a

View file

@ -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))))