From 9262fcb66ab058a2f898f6ad3c0e11f32fa8fff7 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 6 Oct 1992 00:03:11 +0000 Subject: [PATCH] (Fcall_interactively): Pass 2nd arg to Fother_buffer. --- src/callint.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/callint.c b/src/callint.c index a174f829dc7..99a364f6127 100644 --- a/src/callint.c +++ b/src/callint.c @@ -338,13 +338,14 @@ Otherwise, this is done only if an arg is read using the minibuffer.") case 'b': /* Name of existing buffer */ args[i] = Fcurrent_buffer (); if (EQ (selected_window, minibuf_window)) - args[i] = Fother_buffer (args[i]); + args[i] = Fother_buffer (args[i], Qnil); args[i] = Fread_buffer (build_string (prompt), args[i], Qt); break; case 'B': /* Name of buffer, possibly nonexistent */ args[i] = Fread_buffer (build_string (prompt), - Fother_buffer (Fcurrent_buffer ()), Qnil); + Fother_buffer (Fcurrent_buffer (), Qnil), + Qnil); break; case 'c': /* Character */