aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/startup.el9
2 files changed, 14 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c91a3ec04ff..f961f6f1315 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12006-04-27 Reiner Steib <Reiner.Steib@gmx.de>
2
3 * startup.el (command-line-1): Display warning when
4 pure-space-overflow is non-nil.
5
12006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de> 62006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2 7
3 * textmodes/bibtex.el (bibtex-user-optional-fields): Mark as 8 * textmodes/bibtex.el (bibtex-user-optional-fields): Mark as
diff --git a/lisp/startup.el b/lisp/startup.el
index 907ae463462..470ffd7745c 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -1616,6 +1616,15 @@ normal otherwise."
1616 (when init-file-had-error 1616 (when init-file-had-error
1617 (sit-for 2)) 1617 (sit-for 2))
1618 1618
1619 (when (and pure-space-overflow
1620 (not noninteractive))
1621 (display-warning
1622 'initialization
1623 "Building Emacs overflowed pure space."
1624 ;; FIXME: Tell the user what kind of problems are possible and how to fix
1625 ;; the overflow.
1626 :warning))
1627
1619 (when command-line-args-left 1628 (when command-line-args-left
1620 ;; We have command args; process them. 1629 ;; We have command args; process them.
1621 (let ((dir command-line-default-directory) 1630 (let ((dir command-line-default-directory)