Mercurial > emacs
changeset 70252:8b0a765eb64a
(command-line-1): Display warning when
pure-space-overflow is non-nil.
author | Reiner Steib <Reiner.Steib@gmx.de> |
---|---|
date | Thu, 27 Apr 2006 13:51:57 +0000 |
parents | f631f803523d |
children | 36e7fd0f02f6 |
files | lisp/ChangeLog lisp/startup.el |
diffstat | 2 files changed, 14 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Wed Apr 26 23:36:24 2006 +0000 +++ b/lisp/ChangeLog Thu Apr 27 13:51:57 2006 +0000 @@ -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
--- a/lisp/startup.el Wed Apr 26 23:36:24 2006 +0000 +++ b/lisp/startup.el Thu Apr 27 13:51:57 2006 +0000 @@ -1616,6 +1616,15 @@ (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)