diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/startup.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index 9aceed403ea..68f857cde74 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -947,10 +947,11 @@ Type \\[describe-distribution] for information on getting the latest version.")) | |||
| 947 | (setq line 0)))))))) | 947 | (setq line 0)))))))) |
| 948 | ;; If 3 or more files visited, and not all visible, | 948 | ;; If 3 or more files visited, and not all visible, |
| 949 | ;; show user what they all are. | 949 | ;; show user what they all are. |
| 950 | (if (> file-count 2) | 950 | (and (> file-count 2) |
| 951 | (or (get-buffer-window first-file-buffer) | 951 | (not noninteractive) |
| 952 | (progn (other-window 1) | 952 | (or (get-buffer-window first-file-buffer) |
| 953 | (buffer-menu))))))) | 953 | (progn (other-window 1) |
| 954 | (buffer-menu))))))) | ||
| 954 | 955 | ||
| 955 | (defun command-line-normalize-file-name (file) | 956 | (defun command-line-normalize-file-name (file) |
| 956 | "Collapse multiple slashes to one, to handle non-Emacs file names." | 957 | "Collapse multiple slashes to one, to handle non-Emacs file names." |