Never ever pop up a new frame in noninteractive mode (bug#8857).

(display-buffer): Don't check noninteractive when calling
display-buffer-pop-up-frame.
(display-buffer-pop-up-frame): Never pop up a frame in
noninteractive mode (Bug#8857).
This commit is contained in:
Martin Rudalics 2011-06-16 11:21:56 +02:00
parent 981d5c0932
commit 9c2755e9b4
2 changed files with 8 additions and 3 deletions

View file

@ -7,6 +7,10 @@
(switch-to-buffer-other-window-same-frame)
(switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
Adams (Bug#8875).
(display-buffer): Don't check noninteractive when calling
display-buffer-pop-up-frame.
(display-buffer-pop-up-frame): Never pop up a frame in
noninteractive mode (Bug#8857).
2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>

View file

@ -4704,7 +4704,8 @@ non-nil means to make a new frame on graphic displays only.
SPECIFIERS must be a list of buffer display specifiers, see the
documentation of `display-buffer-alist' for a description."
(unless (and graphic-only (not (display-graphic-p)))
(unless (or (and graphic-only (not (display-graphic-p)))
noninteractive)
(let* ((selected-window (selected-window))
(function (or (cdr (assq 'pop-up-frame-function specifiers))
'make-frame))
@ -5299,8 +5300,8 @@ this list as arguments."
;; Try reusing a window not showing BUFFER on any visible or
;; iconified frame.
(display-buffer-reuse-window buffer '(nil other 0))
;; Try making a new frame (but not in batch mode).
(and (not noninteractive) (display-buffer-pop-up-frame buffer))
;; Try making a new frame.
(display-buffer-pop-up-frame buffer)
;; Try using a weakly dedicated window.
(display-buffer-reuse-window
buffer '(nil nil t) '((reuse-window-dedicated . weak)))