Skip to content
Snippets Groups Projects
Commit c814c5bb authored by ram's avatar ram
Browse files

Tweaked PRINT-HERALD to print the backend version, and to say to send mail to

cmucl-bugs.
parent 2d9f16ca
No related branches found
No related tags found
No related merge requests found
...@@ -7,12 +7,10 @@ ...@@ -7,12 +7,10 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.6 1991/04/09 14:39:43 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.7 1991/06/05 14:00:25 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.6 1991/04/09 14:39:43 ram Exp $
;;;
;;; Dump the current lisp image into a core file. All the real work is done ;;; Dump the current lisp image into a core file. All the real work is done
;;; be C. ;;; be C.
;;; ;;;
...@@ -153,9 +151,13 @@ ...@@ -153,9 +151,13 @@
(write-line (machine-instance)) (write-line (machine-instance))
(write-string "Hemlock ") (write-string "Hemlock ")
(write-string (frob *hemlock-version*)) (write-string (frob *hemlock-version*))
(write-string ", Compiler ") (write-string ", Python ")
(write-line (frob compiler-version)) (write-string (frob compiler-version))
(write-line "Send bug reports and questions to Gripe.")) (when (boundp 'c:*backend*)
(write-string ", target ")
(write-string (c:backend-version c:*backend*)))
(terpri)
(write-line "Send bug reports and questions to cmucl-bugs+@cs.cmu.edu."))
(values)) (values))
......
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