]> git.eshelyaron.com Git - emacs.git/commitdiff
(mouse-start-end): Put values in proper order,
authorRichard M. Stallman <rms@gnu.org>
Thu, 26 Dec 1996 20:48:46 +0000 (20:48 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 26 Dec 1996 20:48:46 +0000 (20:48 +0000)
in the doublequote case.

lisp/mouse.el

index d45c04cd9df9fbc1f20f8cced9558721f6256598..5613e73c3c1fea703ccefa232d4b0a7b8b591c05 100644 (file)
@@ -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)