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
34c5d0ed
Commit
34c5d0ed
authored
May 25, 1998
by
Richard M. Stallman
Browse files
(Fcall_interactively): Pass new arg to Fother_buffer.
parent
96aab770
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/callint.c
src/callint.c
+2
-2
No files found.
src/callint.c
View file @
34c5d0ed
...
...
@@ -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
;
...
...
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