mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-24 07:20:37 +00:00
(mouse-start-end): For double click with START on openparen,
start forward scan from START.
This commit is contained in:
parent
fee7a5a2e3
commit
6f482eec77
@ -290,7 +290,11 @@ If DIR is positive skip forward; if negative, skip backward."
|
||||
(= start end)
|
||||
(char-after start)
|
||||
(= (char-syntax (char-after start)) ?\())
|
||||
(list start (save-excursion (forward-sexp 1) (point))))
|
||||
(list start
|
||||
(save-excursion
|
||||
(goto-char start)
|
||||
(forward-sexp 1)
|
||||
(point))))
|
||||
((and (= mode 1)
|
||||
(= start end)
|
||||
(char-after start)
|
||||
|
Loading…
Reference in New Issue
Block a user