Mercurial > emacs
changeset 16746:9d2a854bac89
(mouse-start-end): Put values in proper order,
in the doublequote case.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 26 Dec 1996 20:48:46 +0000 |
parents | 1975baf7f996 |
children | 126a42ee62ac |
files | lisp/mouse.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mouse.el Thu Dec 26 20:47:49 1996 +0000 +++ b/lisp/mouse.el Thu Dec 26 20:48:46 1996 +0000 @@ -685,14 +685,14 @@ (forward-sexp 1) (point)) (error end)))) - (list (1+ start) - (save-excursion + (list (save-excursion (condition-case nil (progn (goto-char (1+ start)) (backward-sexp 1) (point)) - (error end))))))) + (error end))) + (1+ start))))) ((= mode 1) (list (save-excursion (goto-char start)