diff options
Diffstat (limited to 'src')
| -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.") | |||
| 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 | ||