diff options
| author | Richard M. Stallman | 2004-12-27 16:24:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-12-27 16:24:54 +0000 |
| commit | f6e4371206111ca0a06fb85b27307d4e87639cf3 (patch) | |
| tree | 5f1188006c279809085e9c93663caa6a632bd0b6 | |
| parent | 38fb035434ab7d155b36895598d57ad74de9763e (diff) | |
| download | emacs-f6e4371206111ca0a06fb85b27307d4e87639cf3.tar.gz emacs-f6e4371206111ca0a06fb85b27307d4e87639cf3.zip | |
Don't use buffer-disable-undo; do it directly.
| -rw-r--r-- | lisp/loadup.el | 3 |
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") |