Changeset 334


Ignore:
Timestamp:
Jan 19, 2004, 4:34:21 PM (21 years ago)
Author:
Gary Byers
Message:

Allowing INVOKE-DEBUGGER to build a condition from extra arguments would
clearly lead to increased street crime.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/level-1/l1-readloop-lds.lisp

    r316 r334  
    310310          (t (format *error-output* "Break while interrupt-level less than zero; ignored.")))))
    311311
    312 (defun invoke-debugger (&optional string &rest args &aux (fp (%get-frame-ptr)))
    313   (let ((c (condition-arg (or string "") args 'simple-condition)))
     312(defun invoke-debugger (condition &aux (fp (%get-frame-ptr)))
     313  (let ((c (require-type condition 'condition)))
    314314    (when *debugger-hook*
    315315      (let ((hook *debugger-hook*)
Note: See TracChangeset for help on using the changeset viewer.