aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-05-25 22:32:58 +0000
committerRichard M. Stallman1998-05-25 22:32:58 +0000
commit34c5d0ed52ac4a67bf4c3f1c37337a54fb5b8f11 (patch)
tree3eea15faa213622687fabad0a601138a7aed69e5 /src
parent96aab770c2dbd376c2f61f8c8998da011ae56845 (diff)
downloademacs-34c5d0ed52ac4a67bf4c3f1c37337a54fb5b8f11.tar.gz
emacs-34c5d0ed52ac4a67bf4c3f1c37337a54fb5b8f11.zip
(Fcall_interactively): Pass new arg to Fother_buffer.
Diffstat (limited to 'src')
-rw-r--r--src/callint.c4
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.")
487 case 'b': /* Name of existing buffer */ 487 case 'b': /* Name of existing buffer */
488 args[i] = Fcurrent_buffer (); 488 args[i] = Fcurrent_buffer ();
489 if (EQ (selected_window, minibuf_window)) 489 if (EQ (selected_window, minibuf_window))
490 args[i] = Fother_buffer (args[i], Qnil); 490 args[i] = Fother_buffer (args[i], Qnil, Qnil);
491 args[i] = Fread_buffer (build_string (callint_message), args[i], Qt); 491 args[i] = Fread_buffer (build_string (callint_message), args[i], Qt);
492 break; 492 break;
493 493
494 case 'B': /* Name of buffer, possibly nonexistent */ 494 case 'B': /* Name of buffer, possibly nonexistent */
495 args[i] = Fread_buffer (build_string (callint_message), 495 args[i] = Fread_buffer (build_string (callint_message),
496 Fother_buffer (Fcurrent_buffer (), Qnil), 496 Fother_buffer (Fcurrent_buffer (), Qnil, Qnil),
497 Qnil); 497 Qnil);
498 break; 498 break;
499 499