diff options
author | Chong Yidong <cyd@gnu.org> | 2012-04-27 11:10:38 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-04-27 11:10:38 +0800 |
commit | a8e7d6d783219972c08fd49a3a2afaf26eb139c2 (patch) | |
tree | 5e86d23d9285389791dc8321d8a8a2ece2247bea /lisp/mouse.el | |
parent | b360839071ef6c7a9e917fe57a4aaeb39138e8c0 (diff) | |
parent | c5bb756916baa63cc663d68d4c24e5ad33a764e8 (diff) | |
download | emacs-a8e7d6d783219972c08fd49a3a2afaf26eb139c2.tar.gz |
Merge changes from emacs-24 branch
Diffstat (limited to 'lisp/mouse.el')
-rw-r--r-- | lisp/mouse.el | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el index 8e08f89f22c..46e50ed9508 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -403,13 +403,16 @@ must be one of the symbols header, mode, or vertical." (or mouse-1-click-in-non-selected-windows (eq window (selected-window))) (mouse-on-link-p start))) - (enlarge-minibuffer + (resize-minibuffer + ;; Resize the minibuffer window if it's on the same frame as + ;; and immediately below the position window and it's either + ;; active or `resize-mini-windows' is nil. (and (eq line 'mode) - (not resize-mini-windows) (eq (window-frame minibuffer-window) frame) - (not (one-window-p t frame)) (= (nth 1 (window-edges minibuffer-window)) - (nth 3 (window-edges window))))) + (nth 3 (window-edges window))) + (or (not resize-mini-windows) + (eq minibuffer-window (active-minibuffer-window))))) (which-side (and (eq line 'vertical) (or (cdr (assq 'vertical-scroll-bars (frame-parameters frame))) @@ -424,7 +427,7 @@ must be one of the symbols header, mode, or vertical." ((eq line 'mode) ;; Check whether mode-line can be dragged at all. (when (and (window-at-side-p window 'bottom) - (not enlarge-minibuffer)) + (not resize-minibuffer)) (setq done t))) ((eq line 'vertical) ;; Get the window to adjust for the vertical case. @@ -498,13 +501,9 @@ must be one of the symbols header, mode, or vertical." ;; Remember that we dragged. (setq dragged t)) - (cond - (enlarge-minibuffer - (adjust-window-trailing-edge window growth)) - ((eq line 'mode) - (adjust-window-trailing-edge window growth)) - (t - (adjust-window-trailing-edge window (- growth))))))) + (if (eq line 'mode) + (adjust-window-trailing-edge window growth) + (adjust-window-trailing-edge window (- growth)))))) ;; Presumably, if this was just a click, the last event should be ;; `mouse-1', whereas if this did move the mouse, it should be a |