aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/loadup.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el
index 15f47440aed..04fc7a94174 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -46,7 +46,8 @@
46(message "Using load-path %s" load-path) 46(message "Using load-path %s" load-path)
47 47
48;; We don't want to have any undo records in the dumped Emacs. 48;; We don't want to have any undo records in the dumped Emacs.
49(buffer-disable-undo "*scratch*") 49(set-buffer "*scratch*")
50(setq buffer-undo-list t)
50 51
51(load "emacs-lisp/byte-run") 52(load "emacs-lisp/byte-run")
52(load "emacs-lisp/backquote") 53(load "emacs-lisp/backquote")