Skip to content
Snippets Groups Projects
Commit a876e111 authored by rtoy's avatar rtoy
Browse files

Put some newlines in the messages from red-zone-hit and

dynamic-space-overflow-warning-hit.
parent 3e4590e7
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/interr.lisp,v 1.45 2006/06/30 18:41:22 rtoy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/interr.lisp,v 1.46 2006/11/08 22:09:56 rtoy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -682,8 +682,8 @@ ...@@ -682,8 +682,8 @@
#+stack-checking #+stack-checking
(defun red-zone-hit () (defun red-zone-hit ()
(format *error-output* (format *error-output*
"~2&~@<Fatal control stack overflow. You have entered ~ "~2&~@<Fatal control stack overflow. You have entered~%~
the red control stack guard zone while debugging. ~ the red control stack guard zone while debugging.~%~
Returning to Top-Level.~@:>~2%") Returning to Top-Level.~@:>~2%")
(throw 'lisp::top-level-catcher nil)) (throw 'lisp::top-level-catcher nil))
...@@ -693,9 +693,9 @@ ...@@ -693,9 +693,9 @@
;; Don't reserve any more pages ;; Don't reserve any more pages
(setf lisp::reserved-heap-pages 0) (setf lisp::reserved-heap-pages 0)
(format *error-output* (format *error-output*
"~2&~@<Imminent dynamic space overflow has occurred: ~ "~2&~@<Imminent dynamic space overflow has occurred:~%~
Only a small amount of dynamic space is available now. ~ Only a small amount of dynamic space is available now.~%~
Please note that you will be returned to the Top-Level without ~ Please note that you will be returned to the Top-Level without~%~
warning if you run out of space while debugging.~@:>~%") warning if you run out of space while debugging.~@:>~%")
(infinite-error-protect (error 'heap-overflow)))) (infinite-error-protect (error 'heap-overflow))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment