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
a3e7c391
Commit
a3e7c391
authored
Mar 18, 1996
by
Francesco Potortì
Browse files
* simple.el (insert-buffer): Interactive default changed to a more
reasonable one.
parent
63a1c38c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
lisp/simple.el
lisp/simple.el
+9
-4
No files found.
lisp/simple.el
View file @
a3e7c391
...
...
@@ -1373,10 +1373,15 @@ With argument, rotate that many kills forward (or backward, if negative)."
"Insert after point the contents of BUFFER.
Puts mark after the inserted text.
BUFFER may be a buffer or a buffer name."
(
interactive
(
list
(
progn
(
barf-if-buffer-read-only
)
(
read-buffer
"Insert buffer: "
(
other-buffer
(
current-buffer
)
t
)
t
))))
(
interactive
(
list
(
progn
(
barf-if-buffer-read-only
)
(
read-buffer
"Insert buffer: "
(
if
(
eq
(
selected-window
)
(
next-window
(
selected-window
)))
(
other-buffer
(
current-buffer
))
(
window-buffer
(
next-window
(
selected-window
))))
t
))))
(
or
(
bufferp
buffer
)
(
setq
buffer
(
get-buffer
buffer
)))
(
let
(
start
end
newmark
)
...
...
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