From: Stefan Kangas Date: Tue, 10 Dec 2024 22:35:31 +0000 (+0100) Subject: Delete variable pure-space-overflow X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f20a517ef9793dbc10f7a6d826681e55ae835ff8;p=emacs.git Delete variable pure-space-overflow * lisp/startup.el (pure-space-overflow): Make variable obsolete. * lisp/loadup.el (pure-space-overflow): Do not set. Remove call to `garbage-collect', as that is done by `dump-emacs-portable'. (cherry picked from commit e7926ab48604d4bdf7088014717b02dddfe9f190) --- diff --git a/lisp/loadup.el b/lisp/loadup.el index d793956b88c..7d77b1f24e5 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -565,9 +565,6 @@ directory got moved. This is set to be a pair in the form of: ;; Avoid error if user loads some more libraries now. (setq purify-flag nil) -(if (null (garbage-collect)) - (setq pure-space-overflow t)) - ;; Make sure we will attempt bidi reordering henceforth. (setq redisplay--inhibit-bidi nil) diff --git a/lisp/startup.el b/lisp/startup.el index 34e74c370a6..4a291d9cf7e 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -427,9 +427,6 @@ from being initialized." (defvar no-blinking-cursor nil) -(defvar pure-space-overflow nil - "Non-nil if building Emacs overflowed pure space.") - (defcustom tutorial-directory (file-name-as-directory (expand-file-name "tutorials" data-directory)) "Directory containing the Emacs TUTORIAL files."