From: Richard M. Stallman Date: Mon, 25 May 1998 22:32:58 +0000 (+0000) Subject: (Fcall_interactively): Pass new arg to Fother_buffer. X-Git-Tag: emacs-20.3~833 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=34c5d0ed52ac4a67bf4c3f1c37337a54fb5b8f11;p=emacs.git (Fcall_interactively): Pass new arg to Fother_buffer. --- 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;