# HG changeset patch # User Reiner Steib # Date 1146145917 0 # Node ID 8b0a765eb64afdb0f6d723513ed7da30f6fe5dec # Parent f631f803523db8acb567488ad8be174a0ea153d5 (command-line-1): Display warning when pure-space-overflow is non-nil. diff -r f631f803523d -r 8b0a765eb64a lisp/ChangeLog --- 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 + + * startup.el (command-line-1): Display warning when + pure-space-overflow is non-nil. + 2006-04-26 Roland Winkler * textmodes/bibtex.el (bibtex-user-optional-fields): Mark as diff -r f631f803523d -r 8b0a765eb64a lisp/startup.el --- 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)