Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
9262fcb6
Commit
9262fcb6
authored
Oct 06, 1992
by
Richard M. Stallman
Browse files
(Fcall_interactively): Pass 2nd arg to Fother_buffer.
parent
c3c73481
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/callint.c
src/callint.c
+3
-2
No files found.
src/callint.c
View file @
9262fcb6
...
...
@@ -338,13 +338,14 @@ 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
]);
args
[
i
]
=
Fother_buffer
(
args
[
i
]
,
Qnil
);
args
[
i
]
=
Fread_buffer
(
build_string
(
prompt
),
args
[
i
],
Qt
);
break
;
case
'B'
:
/* Name of buffer, possibly nonexistent */
args
[
i
]
=
Fread_buffer
(
build_string
(
prompt
),
Fother_buffer
(
Fcurrent_buffer
()),
Qnil
);
Fother_buffer
(
Fcurrent_buffer
(),
Qnil
),
Qnil
);
break
;
case
'c'
:
/* Character */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment