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:
parent
f4ae0b8bbb
commit
69aac59d2a
1 changed files with 1 additions and 1 deletions
|
|
@ -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))))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue