From 82a315b9e733deffe8802990c6312d02a576040c Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 14 Dec 2019 13:39:26 +0200 Subject: [PATCH] Don't warn about pure-space overflow * lisp/startup.el (command-line-1): Don't warn about pure-space overflow if we were dumped with pdumper. (Bug#38492) --- lisp/startup.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/startup.el b/lisp/startup.el index efd1ae9a4fc..04a37bf59e9 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -2324,7 +2324,11 @@ A fancy display is used on graphic displays, normal otherwise." "A subroutine of `command-line'." (display-startup-echo-area-message) (when (and pure-space-overflow - (not noninteractive)) + (not noninteractive) + ;; If we were dumped with pdumper, we don't care about + ;; pure-space overflow. + (or (not (fboundp 'pdumper-stats)) + (null (pdumper-stats)))) (display-warning 'initialization "Building Emacs overflowed pure space.\ -- 2.39.2