diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-12-26 20:48:46 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-12-26 20:48:46 +0000 |
commit | f1017d552a2235bd6647531a60e6432bd8e611d2 (patch) | |
tree | f17302a24ffa3307eb6d5e3cfa871e62d452d7bd /lisp/mouse.el | |
parent | 14d9a6630e42176d48cf6c7264832aec9133271d (diff) | |
download | emacs-f1017d552a2235bd6647531a60e6432bd8e611d2.tar.gz |
(mouse-start-end): Put values in proper order,
in the doublequote case.
Diffstat (limited to 'lisp/mouse.el')
-rw-r--r-- | lisp/mouse.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el index d45c04cd9df..5613e73c3c1 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -685,14 +685,14 @@ If DIR is positive skip forward; if negative, skip backward." (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) |