From: Karl Heuer Date: Thu, 16 Oct 1997 00:07:02 +0000 (+0000) Subject: (replace_buffer_in_all_windows): X-Git-Tag: emacs-20.3~3007 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=db7f721d26195bec517ddd3213b53c30584136d4;p=emacs.git (replace_buffer_in_all_windows): Pass 1 as MINI to window_loop. --- diff --git a/src/window.c b/src/window.c index c5360a886bb..97a2221142c 100644 --- a/src/window.c +++ b/src/window.c @@ -1666,9 +1666,9 @@ replace_buffer_in_all_windows (buffer) because it only considers frames on the current keyboard. So loop manually over frames, and handle each one. */ FOR_EACH_FRAME (tail, frame) - window_loop (UNSHOW_BUFFER, buffer, 0, frame); + window_loop (UNSHOW_BUFFER, buffer, 1, frame); #else - window_loop (UNSHOW_BUFFER, buffer, 0, Qt); + window_loop (UNSHOW_BUFFER, buffer, 1, Qt); #endif }