diff options
| author | Richard M. Stallman | 1995-01-03 07:05:41 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-01-03 07:05:41 +0000 |
| commit | eca1cf26c3b8d353578b0dad874835341a317c5e (patch) | |
| tree | 567160ecf671ce10e268d02301fe1ed6a1622b0d | |
| parent | 9e9c0abe49bd7695675f584b5f8eba8d1a29e743 (diff) | |
| download | emacs-eca1cf26c3b8d353578b0dad874835341a317c5e.tar.gz emacs-eca1cf26c3b8d353578b0dad874835341a317c5e.zip | |
(command-line-1): Pause between init file error
and command line option processing.
| -rw-r--r-- | lisp/startup.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index bc39a0c39ff..54c0b0aa5db 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -559,6 +559,10 @@ Type \\[describe-distribution] for information on getting the latest version.")) | |||
| 559 | (set-buffer (get-buffer "*scratch*")) | 559 | (set-buffer (get-buffer "*scratch*")) |
| 560 | (erase-buffer) | 560 | (erase-buffer) |
| 561 | (set-buffer-modified-p nil))))) | 561 | (set-buffer-modified-p nil))))) |
| 562 | ;; Delay 2 seconds after the init file error message | ||
| 563 | ;; was displayed, so user can read it. | ||
| 564 | (if init-file-had-error | ||
| 565 | (sit-for 2)) | ||
| 562 | (let ((dir command-line-default-directory) | 566 | (let ((dir command-line-default-directory) |
| 563 | (file-count 0) | 567 | (file-count 0) |
| 564 | first-file-buffer | 568 | first-file-buffer |