diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-05-25 22:32:58 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-05-25 22:32:58 +0000 |
commit | 34c5d0ed52ac4a67bf4c3f1c37337a54fb5b8f11 (patch) | |
tree | 3eea15faa213622687fabad0a601138a7aed69e5 /src/callint.c | |
parent | 96aab770c2dbd376c2f61f8c8998da011ae56845 (diff) | |
download | emacs-34c5d0ed52ac4a67bf4c3f1c37337a54fb5b8f11.tar.gz |
(Fcall_interactively): Pass new arg to Fother_buffer.
Diffstat (limited to 'src/callint.c')
-rw-r--r-- | src/callint.c | 4 |
1 files 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; |