mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-06 11:55:48 +00:00
(insert-buffer): Before reading arg, barf if read-only.
This commit is contained in:
parent
af36339a34
commit
58ff020d72
@ -1057,7 +1057,8 @@ 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 (read-buffer "Insert buffer: " (other-buffer) t)))
|
||||
(interactive (list (progn (barf-if-buffer-read-only)
|
||||
(read-buffer "Insert buffer: " (other-buffer) t))))
|
||||
(or (bufferp buffer)
|
||||
(setq buffer (get-buffer buffer)))
|
||||
(let (start end newmark)
|
||||
|
Loading…
Reference in New Issue
Block a user