diff options
| author | Gerd Moellmann | 2000-10-18 14:23:10 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-10-18 14:23:10 +0000 |
| commit | 754a29c978aaa227760634996c2cf4307efafe31 (patch) | |
| tree | a3c8c3c8133181f90d4441fa8b2f779344a14139 | |
| parent | 7396a36c102c34fce487f2bf4883bf4c91f0fd3d (diff) | |
| download | emacs-754a29c978aaa227760634996c2cf4307efafe31.tar.gz emacs-754a29c978aaa227760634996c2cf4307efafe31.zip | |
(fancy-splash-screens): Set buffer-undo-list to t.
| -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 | ||