# HG changeset patch # User Richard M. Stallman # Date 760865949 0 # Node ID 66aadd6ba5e60f1d4acfd932267903c2c7270838 # Parent 044cb853edbd67c9793481b731156c4c86d21633 (mouse-start-end): For double click with START on openparen, start forward scan from START. diff -r 044cb853edbd -r 66aadd6ba5e6 lisp/mouse.el --- a/lisp/mouse.el Thu Feb 10 04:43:50 1994 +0000 +++ b/lisp/mouse.el Thu Feb 10 07:39:09 1994 +0000 @@ -290,7 +290,11 @@ (= 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)