From: Chong Yidong Date: Tue, 13 Sep 2011 19:10:32 +0000 (-0400) Subject: * lisp/window.el (window-deletable-p): Use next-frame. X-Git-Tag: emacs-pretest-24.0.90~104^2~60 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=85e9c04bf3633646b6d41ef0474805af6383a508;p=emacs.git * lisp/window.el (window-deletable-p): Use next-frame. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f543bd0eb03..73384823c48 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-09-13 Chong Yidong + + * window.el (window-deletable-p): Use next-frame. + 2011-09-13 Martin Rudalics * window.el (window-auto-delete): Remove. diff --git a/lisp/window.el b/lisp/window.el index 26d29db4993..3a229a4e447 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -2274,15 +2274,10 @@ frame." (buffer (window-buffer window))) (cond ((frame-root-window-p window) - ;; WINDOW's frame can be deleted only if there are other visible - ;; frames on the same terminal. - (when (let ((terminal (frame-terminal frame))) - (catch 'found - (dolist (f (delq frame (frame-list))) - (and (eq terminal (frame-terminal f)) - (frame-visible-p f) - (throw 'found t))))) - 'frame)) + ;; WINDOW's frame can be deleted only if there are other frames + ;; on the same terminal. + (unless (eq frame (next-frame frame 0)) + 'frame)) ((or ignore-window-parameters (not (eq (window-parameter window 'window-side) 'none)) (and parent (eq (window-parameter parent 'window-side) 'none)))