Mercurial > emacs
changeset 22244:41c88b9489c3
(Fcall_interactively): Pass new arg to Fother_buffer.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 25 May 1998 22:32:58 +0000 |
parents | ec7420aa37f3 |
children | 94da16d936b6 |
files | src/callint.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/callint.c Mon May 25 20:35:28 1998 +0000 +++ b/src/callint.c Mon May 25 22:32:58 1998 +0000 @@ -487,13 +487,13 @@ 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;