Changeset 788


Ignore:
Timestamp:
Apr 18, 2004, 11:49:39 PM (21 years ago)
Author:
Gary Byers
Message:

Don't use %CURRENT-TCR, in %LAST-FN-ON-STACK.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/level-1/l1-error-system.lisp

    r584 r788  
    568568
    569569(defun %last-fn-on-stack (&optional (number 0) (s (%get-frame-ptr)))
    570   (let* ((fn nil)
    571          (tcr (%current-tcr)))
     570  (let* ((fn nil))
    572571    (let ((p s))
    573572      (tagbody
    574573        (dotimes (i number)
    575574          (declare (fixnum i))
    576           (unless (setq p (parent-frame p tcr))
     575          (unless (setq p (parent-frame p nil))
    577576            (go done)))
    578577        (if  p
Note: See TracChangeset for help on using the changeset viewer.