From faa64cf7ba919d24dcd287d9d2a37d99d48c7759 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 6 Oct 1992 00:02:06 +0000 Subject: (window_loop): Pass 2nd arg to Fother_buffer. --- src/window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/window.c b/src/window.c index 2a01647e5d..8d6e24de2c 100644 --- a/src/window.c +++ b/src/window.c @@ -1113,7 +1113,7 @@ window_loop (type, obj, mini, frames) on the frame, find a new buffer to display there. */ if (NILP (XWINDOW (w)->parent)) { - Lisp_Object new_buffer = Fother_buffer (obj); + Lisp_Object new_buffer = Fother_buffer (obj, Qnil); if (NILP (new_buffer)) new_buffer = Fget_buffer_create (build_string ("*scratch*")); @@ -1151,7 +1151,7 @@ window_loop (type, obj, mini, frames) if (EQ (XWINDOW (w)->buffer, obj)) { /* Find another buffer to show in this window. */ - Lisp_Object another_buffer = Fother_buffer (obj); + Lisp_Object another_buffer = Fother_buffer (obj, Qnil); if (NILP (another_buffer)) another_buffer = Fget_buffer_create (build_string ("*scratch*")); -- cgit v1.2.3