diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-10-18 14:23:10 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-10-18 14:23:10 +0000 |
commit | 754a29c978aaa227760634996c2cf4307efafe31 (patch) | |
tree | a3c8c3c8133181f90d4441fa8b2f779344a14139 /lisp/startup.el | |
parent | 7396a36c102c34fce487f2bf4883bf4c91f0fd3d (diff) | |
download | emacs-754a29c978aaa227760634996c2cf4307efafe31.tar.gz |
(fancy-splash-screens): Set buffer-undo-list to t.
Diffstat (limited to 'lisp/startup.el')
-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 (define-key map [mouse-movement] 'ignore) (setq cursor-type nil display-busy-cursor nil + buffer-undo-list t mode-line-format (propertize "---- %b %-" 'face '(:weight bold)) timer (run-with-timer 0 5 #'fancy-splash-screens-1 splash-buffer)) (recursive-edit)) (cancel-timer timer) - (remove-hook 'pre-command-hook 'fancy-splash-pre-command) (setq display-busy-cursor old-busy-cursor) (kill-buffer splash-buffer)))) |