From 34c5d0ed52ac4a67bf4c3f1c37337a54fb5b8f11 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 25 May 1998 22:32:58 +0000 Subject: [PATCH] (Fcall_interactively): Pass new arg to Fother_buffer. --- src/callint.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/callint.c b/src/callint.c index 1faa448c117..be096b4c998 100644 --- a/src/callint.c +++ b/src/callint.c @@ -487,13 +487,13 @@ 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], Qnil); + args[i] = Fother_buffer (args[i], Qnil, Qnil); args[i] = Fread_buffer (build_string (callint_message), args[i], Qt); break; case 'B': /* Name of buffer, possibly nonexistent */ args[i] = Fread_buffer (build_string (callint_message), - Fother_buffer (Fcurrent_buffer (), Qnil), + Fother_buffer (Fcurrent_buffer (), Qnil, Qnil), Qnil); break; -- 2.39.2