Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
23efee2c
Commit
23efee2c
authored
Jun 10, 1993
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(append-to-buffer): Interactively, supply all 3 args.
Allow nonexistent buffers.
parent
6992e6b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
lisp/simple.el
lisp/simple.el
+2
-1
No files found.
lisp/simple.el
View file @
23efee2c
...
...
@@ -1194,7 +1194,8 @@ When calling from a program, give three arguments:
BUFFER (or buffer name), START and END.
START and END specify the portion of the current buffer to be copied."
(
interactive
(
list
(
read-buffer
"Append to buffer: "
(
other-buffer
nil
t
)
t
)))
(
list
(
read-buffer
"Append to buffer: "
(
other-buffer
nil
t
))
(
region-beginning
)
(
region-end
)))
(
let
((
oldbuf
(
current-buffer
)))
(
save-excursion
(
set-buffer
(
get-buffer-create
buffer
))
...
...
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