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:
parent
991767e75e
commit
cb58ea3322
2 changed files with 14 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue