1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-10 09:43:26 -08:00

(command-line-1): Display warning when

pure-space-overflow is non-nil.
This commit is contained in:
Reiner Steib 2006-04-27 13:51:57 +00:00
parent 991767e75e
commit cb58ea3322
2 changed files with 14 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2006-04-27 Reiner Steib <Reiner.Steib@gmx.de>
* startup.el (command-line-1): Display warning when
pure-space-overflow is non-nil.
2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
* textmodes/bibtex.el (bibtex-user-optional-fields): Mark as

View file

@ -1616,6 +1616,15 @@ normal otherwise."
(when init-file-had-error
(sit-for 2))
(when (and pure-space-overflow
(not noninteractive))
(display-warning
'initialization
"Building Emacs overflowed pure space."
;; FIXME: Tell the user what kind of problems are possible and how to fix
;; the overflow.
:warning))
(when command-line-args-left
;; We have command args; process them.
(let ((dir command-line-default-directory)