]> git.eshelyaron.com Git - emacs.git/commitdiff
(mouse-scroll-subr): New arg WINDOW.
authorRichard M. Stallman <rms@gnu.org>
Fri, 17 Jun 1994 00:51:33 +0000 (00:51 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 17 Jun 1994 00:51:33 +0000 (00:51 +0000)
(mouse-drag-region, mouse-drag-secondary): Pass new arg.

lisp/mouse.el

index 5d4dea37c70d2630b425c411520ff62ba091df7b..7f58416f5b1cf9290d30649506b60c6e966c79de 100644 (file)
@@ -157,23 +157,23 @@ the mouse back into the window, or release the button.
 This variable's value may be non-integral.
 Setting this to zero causes Emacs to scroll as fast as it can.")
 
-(defun mouse-scroll-subr (jump &optional overlay start)
-  "Scroll the selected window JUMP lines at a time, until new input arrives.
+(defun mouse-scroll-subr (window jump &optional overlay start)
+  "Scroll the window WINDOW, JUMP lines at a time, until new input arrives.
 If OVERLAY is an overlay, let it stretch from START to the far edge of
 the newly visible text.
 Upon exit, point is at the far edge of the newly visible text."
   (while (progn
-          (goto-char (window-start))
-          (if (not (zerop (vertical-motion jump)))
+          (goto-char (window-start window))
+          (if (not (zerop (vertical-motion jump window)))
               (progn
-                (set-window-start (selected-window) (point))
+                (set-window-start window (point))
                 (if (natnump jump)
                     (progn
-                      (goto-char (window-end (selected-window)))
+                      (goto-char (window-end window))
                       ;; window-end doesn't reflect the window's new
                       ;; start position until the next redisplay.  Hurrah.
-                      (vertical-motion (1- jump)))
-                  (goto-char (window-start (selected-window))))
+                      (vertical-motion (1- jump) window))
+                  (goto-char (window-start window)))
                 (if overlay
                     (move-overlay overlay start (point)))
                 (if (not (eobp))
@@ -238,11 +238,11 @@ release the mouse button.  Otherwise, it does not."
                (cond
                 ((null mouse-row))
                 ((< mouse-row top)
-                 (mouse-scroll-subr
-                  (- mouse-row top) mouse-drag-overlay start-point))
+                 (mouse-scroll-subr start-window (- mouse-row top)
+                                    mouse-drag-overlay start-point))
                 ((and (not (eobp))
                       (>= mouse-row bottom))
-                 (mouse-scroll-subr (1+ (- mouse-row bottom))
+                 (mouse-scroll-subr start-window (1+ (- mouse-row bottom))
                                     mouse-drag-overlay start-point)))))))))
 
       (if (and (eq (get (event-basic-type event) 'event-kind) 'mouse-click)
@@ -635,11 +635,11 @@ This must be bound to a button-down mouse event."
                   (cond
                    ((null mouse-row))
                    ((< mouse-row top)
-                    (mouse-scroll-subr
-                     (- mouse-row top) mouse-secondary-overlay start-point))
+                    (mouse-scroll-subr start-window (- mouse-row top)
+                                      mouse-secondary-overlay start-point))
                    ((and (not (eobp))
                          (>= mouse-row bottom))
-                    (mouse-scroll-subr (1+ (- mouse-row bottom))
+                    (mouse-scroll-subr start-window (1+ (- mouse-row bottom))
                                        mouse-secondary-overlay start-point)))))))))
 
        (if (and (eq (get (event-basic-type event) 'event-kind) 'mouse-click)