aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/startup.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index a9a79e63be4..b81d8b811e6 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -1307,7 +1307,9 @@ where FACE is a valid face specification, as it can be used with
1307 (set-buffer buffer) 1307 (set-buffer buffer)
1308 (erase-buffer) 1308 (erase-buffer)
1309 (if pure-space-overflow 1309 (if pure-space-overflow
1310 (insert "Warning Warning Pure space overflow Warning Warning\n")) 1310 (insert "\
1311Warning Warning!!! Pure space overflow !!!Warning Warning
1312\(See the node Building Emacs in the Lisp manual for details.)\n"))
1311 (fancy-splash-head) 1313 (fancy-splash-head)
1312 (apply #'fancy-splash-insert text) 1314 (apply #'fancy-splash-insert text)
1313 (fancy-splash-tail) 1315 (fancy-splash-tail)
@@ -1416,7 +1418,9 @@ we put it on this frame."
1416 (propertize "---- %b %-" 'face '(:weight bold))) 1418 (propertize "---- %b %-" 'face '(:weight bold)))
1417 1419
1418 (if pure-space-overflow 1420 (if pure-space-overflow
1419 (insert "Warning Warning Pure space overflow Warning Warning\n")) 1421 (insert "\
1422Warning Warning!!! Pure space overflow !!!Warning Warning
1423\(See the node Building Emacs in the Lisp manual for details.)\n"))
1420 1424
1421 ;; The convention for this piece of code is that 1425 ;; The convention for this piece of code is that
1422 ;; each piece of output starts with one or two newlines 1426 ;; each piece of output starts with one or two newlines