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

Turn off byte-compiler for SIGNAL, ERROR, etc.

parent b7387073
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/error.lisp,v 1.30 1993/07/22 01:08:02 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/error.lisp,v 1.31 1993/08/19 12:45:37 ram Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -511,6 +511,8 @@
"When (typep condition *break-on-signals*) is true, then calls to SIGNAL will
enter the debugger prior to signalling that condition.")
(declaim (optimize (speed 2))) ; Turn off byte compiler.
(defun signal (datum &rest arguments)
"Invokes the signal facility on a condition formed from datum and arguments.
If the condition is not handled, nil is returned. If
......@@ -643,6 +645,8 @@
(format *error-output* "~&~@<Warning: ~3i~:_~A~:>~%" condition)))
nil)
(declaim (optimize (speed 0))); Turn byte compiler back on.
;;;; Condition definitions.
......
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