# HG changeset patch # User Richard M. Stallman # Date 780218566 0 # Node ID 25406f41c336104787d2a470ce7ea94aceadc7de # Parent 6616ea991c4acb02287ab145138586450d7df174 (insert-buffer): Default to first buffer other than current one. diff -r 6616ea991c4a -r 25406f41c336 lisp/simple.el --- a/lisp/simple.el Thu Sep 22 06:55:11 1994 +0000 +++ b/lisp/simple.el Thu Sep 22 07:22:46 1994 +0000 @@ -1230,7 +1230,9 @@ 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) t)))) + (read-buffer "Insert buffer: " + (other-buffer (current-buffer) t) + t)))) (or (bufferp buffer) (setq buffer (get-buffer buffer))) (let (start end newmark)