diff options
| -rw-r--r-- | lisp/startup.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index e5cb37fd082..ba4d043edb3 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -1014,13 +1014,13 @@ where FACE is a valid face specification, as it can be used with | |||
| 1014 | (define-key map [mouse-movement] 'ignore) | 1014 | (define-key map [mouse-movement] 'ignore) |
| 1015 | (setq cursor-type nil | 1015 | (setq cursor-type nil |
| 1016 | display-busy-cursor nil | 1016 | display-busy-cursor nil |
| 1017 | buffer-undo-list t | ||
| 1017 | mode-line-format | 1018 | mode-line-format |
| 1018 | (propertize "---- %b %-" 'face '(:weight bold)) | 1019 | (propertize "---- %b %-" 'face '(:weight bold)) |
| 1019 | timer (run-with-timer 0 5 #'fancy-splash-screens-1 | 1020 | timer (run-with-timer 0 5 #'fancy-splash-screens-1 |
| 1020 | splash-buffer)) | 1021 | splash-buffer)) |
| 1021 | (recursive-edit)) | 1022 | (recursive-edit)) |
| 1022 | (cancel-timer timer) | 1023 | (cancel-timer timer) |
| 1023 | (remove-hook 'pre-command-hook 'fancy-splash-pre-command) | ||
| 1024 | (setq display-busy-cursor old-busy-cursor) | 1024 | (setq display-busy-cursor old-busy-cursor) |
| 1025 | (kill-buffer splash-buffer)))) | 1025 | (kill-buffer splash-buffer)))) |
| 1026 | 1026 | ||