# HG changeset patch # User Richard M. Stallman # Date 990376079 0 # Node ID a3e60560cd394c9e2aedd39dcf6f7c985ab0e8a6 # Parent a2fb133c122db74a706bf931f03e87d18755567f (command-line-1): When >2 files visited, leave the last one visible, and make that the selected window. diff -r a2fb133c122d -r a3e60560cd39 lisp/startup.el --- a/lisp/startup.el Sun May 20 16:27:51 2001 +0000 +++ b/lisp/startup.el Sun May 20 16:27:59 2001 +0000 @@ -1593,12 +1593,11 @@ (goto-line line)) (setq line 0)))))))) ;; If 3 or more files visited, and not all visible, - ;; show user what they all are. + ;; show user what they all are. But leave the last one current. (and (> file-count 2) (not noninteractive) (or (get-buffer-window first-file-buffer) - (progn (other-window 1) - (buffer-menu))))))) + (list-buffers)))))) (defun command-line-normalize-file-name (file)