From 6ed96c33f0fb05488bb45fc4ed5018a0cd3e45a7 Mon Sep 17 00:00:00 2001 From: Martin Rudalics Date: Sat, 4 Dec 2010 17:43:51 -0500 Subject: [PATCH] * dired.el (dired-pop-to-buffer): Bind pop-up-frames to nil (Bug#7533). --- lisp/ChangeLog | 5 +++++ lisp/dired.el | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 95ee06e7812..300a5dd31d5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-12-04 Martin Rudalics + + * dired.el (dired-pop-to-buffer): Bind pop-up-frames to nil + (Bug#7533). + 2010-12-04 W. Martin Borgert (tiny change) * files.el (auto-mode-alist): Handle .dbk (DocBook) with xml-mode. diff --git a/lisp/dired.el b/lisp/dired.el index b2bd082b1a6..4472c13bab2 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -2755,7 +2755,8 @@ name, or the marker and a count of marked files." ;; that's possible. (Bug#1806) (split-window-vertically)) ;; Otherwise, try to split WINDOW sensibly. - (split-window-sensibly window))))) + (split-window-sensibly window)))) + pop-up-frames) (pop-to-buffer (get-buffer-create buf))) ;; If dired-shrink-to-fit is t, make its window fit its contents. (when dired-shrink-to-fit -- 2.11.4.GIT