emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 82a315b: Don't warn about pure-space overflow


From: Eli Zaretskii
Subject: master 82a315b: Don't warn about pure-space overflow
Date: Sat, 14 Dec 2019 06:40:19 -0500 (EST)

branch: master
commit 82a315b9e733deffe8802990c6312d02a576040c
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    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 efd1ae9..04a37bf 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.\



reply via email to

[Prev in Thread] Current Thread [Next in Thread]