Index: emacs/lisp/mouse.el
diff -c emacs/lisp/mouse.el:1.275 emacs/lisp/mouse.el:1.276
*** emacs/lisp/mouse.el:1.275   Sat Aug  6 22:13:43 2005
--- emacs/lisp/mouse.el Tue Sep  6 19:10:06 2005
***************
*** 538,548 ****
         (window (posn-window start))
         (frame (window-frame window))
         (first-window (frame-first-window frame)))
!     (when (or (eq window first-window)
!             (= (nth 1 (window-edges window))
!                (nth 1 (window-edges first-window))))
!       (error "Cannot move header-line at the top of the frame"))
!     (mouse-drag-mode-line-1 start-event nil)))
  
  
  (defun mouse-drag-vertical-line (start-event)
--- 538,547 ----
         (window (posn-window start))
         (frame (window-frame window))
         (first-window (frame-first-window frame)))
!     (unless (or (eq window first-window)
!               (= (nth 1 (window-edges window))
!                  (nth 1 (window-edges first-window))))
!       (mouse-drag-mode-line-1 start-event nil))))
  
  
  (defun mouse-drag-vertical-line (start-event)


_______________________________________________
Emacs-diffs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-diffs

Reply via email to