mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-26 07:33:47 +00:00
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)
This commit is contained in:
parent
c6e655c77b
commit
82a315b9e7
@ -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.\
|
||||
|
Loading…
Reference in New Issue
Block a user