diff options
| author | Richard M. Stallman | 2003-06-30 10:38:03 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-06-30 10:38:03 +0000 |
| commit | 6a4803ec738ba800eab12bf776c38f1b5345c2d7 (patch) | |
| tree | 225d97686e9033ea212b6edfae793af2ad927900 | |
| parent | b693e375218475627dbc4ecd28993165c237cc93 (diff) | |
| download | emacs-6a4803ec738ba800eab12bf776c38f1b5345c2d7.tar.gz emacs-6a4803ec738ba800eab12bf776c38f1b5345c2d7.zip | |
(pure-space-overflow): Set it if overflow.
| -rw-r--r-- | lisp/ChangeLog | 20 | ||||
| -rw-r--r-- | lisp/loadup.el | 3 |
2 files changed, 23 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 65ad59469be..d2075f23ce3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,23 @@ | |||
| 1 | 2003-06-30 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * loadup.el (pure-space-overflow): Set it if overflow. | ||
| 4 | |||
| 5 | * startup.el (pure-space-overflow): New variable. | ||
| 6 | (fancy-splash-screens-1): Display warning if overflow. | ||
| 7 | (normal-splash-screen): Likewise. | ||
| 8 | |||
| 9 | * vc.el (vc-default-show-log-entry): Use with-no-warnings. | ||
| 10 | |||
| 11 | * subr.el (lazy-completion-table, dynamic-completion-table): | ||
| 12 | New macros. | ||
| 13 | |||
| 14 | 2003-06-28 Richard M. Stallman <rms@gnu.org> | ||
| 15 | |||
| 16 | * menu-bar.el (menu-bar-options-menu): Move mouse-set-fonts item here. | ||
| 17 | |||
| 18 | * international/mule-cmds.el (mule-menu-keymap): Delete | ||
| 19 | mouse-set-fonts item here. | ||
| 20 | |||
| 1 | 2003-06-29 Nick Roberts <nick@nick.uklinux.net> | 21 | 2003-06-29 Nick Roberts <nick@nick.uklinux.net> |
| 2 | 22 | ||
| 3 | * gdb-ui.el (gdb-display-number-end): Don't re-initialise local | 23 | * gdb-ui.el (gdb-display-number-end): Don't re-initialise local |
diff --git a/lisp/loadup.el b/lisp/loadup.el index 4b525158947..f0ce160c666 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el | |||
| @@ -301,6 +301,9 @@ | |||
| 301 | ;;; At this point, we're ready to resume undo recording for scratch. | 301 | ;;; At this point, we're ready to resume undo recording for scratch. |
| 302 | (buffer-enable-undo "*scratch*") | 302 | (buffer-enable-undo "*scratch*") |
| 303 | 303 | ||
| 304 | (if (null (garbage-collect)) | ||
| 305 | (setq pure-space-overflow t)) | ||
| 306 | |||
| 304 | (if (or (member (nth 3 command-line-args) '("dump" "bootstrap")) | 307 | (if (or (member (nth 3 command-line-args) '("dump" "bootstrap")) |
| 305 | (member (nth 4 command-line-args) '("dump" "bootstrap"))) | 308 | (member (nth 4 command-line-args) '("dump" "bootstrap"))) |
| 306 | (if (eq system-type 'vax-vms) | 309 | (if (eq system-type 'vax-vms) |