diff options
| author | Karl Heuer | 1997-10-16 00:07:02 +0000 |
|---|---|---|
| committer | Karl Heuer | 1997-10-16 00:07:02 +0000 |
| commit | db7f721d26195bec517ddd3213b53c30584136d4 (patch) | |
| tree | 041aff3c8031817d90ff79d694791281e04de38b /src | |
| parent | a5bec26c83a6d501cbbe612d6802f69950b92e4c (diff) | |
| download | emacs-db7f721d26195bec517ddd3213b53c30584136d4.tar.gz emacs-db7f721d26195bec517ddd3213b53c30584136d4.zip | |
(replace_buffer_in_all_windows):
Pass 1 as MINI to window_loop.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) | |||
| 1666 | because it only considers frames on the current keyboard. | 1666 | because it only considers frames on the current keyboard. |
| 1667 | So loop manually over frames, and handle each one. */ | 1667 | So loop manually over frames, and handle each one. */ |
| 1668 | FOR_EACH_FRAME (tail, frame) | 1668 | FOR_EACH_FRAME (tail, frame) |
| 1669 | window_loop (UNSHOW_BUFFER, buffer, 0, frame); | 1669 | window_loop (UNSHOW_BUFFER, buffer, 1, frame); |
| 1670 | #else | 1670 | #else |
| 1671 | window_loop (UNSHOW_BUFFER, buffer, 0, Qt); | 1671 | window_loop (UNSHOW_BUFFER, buffer, 1, Qt); |
| 1672 | #endif | 1672 | #endif |
| 1673 | } | 1673 | } |
| 1674 | 1674 | ||