/* -*-C-*-
-$Id: step.c,v 9.31 1993/06/24 07:09:53 gjr Exp $
+$Id: step.c,v 9.32 1994/06/28 19:03:13 cph Exp $
-Copyright (c) 1987-92 Massachusetts Institute of Technology
+Copyright (c) 1987-94 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
/* (PRIMITIVE-EVAL-STEP EXPRESSION ENV HUNK3)
Evaluates EXPRESSION in ENV and intalls the eval-trap,
apply-trap, and return-trap from HUNK3. If any
- trap is '(), it is a null trap that does a normal EVAL,
+ trap is #F, it is a null trap that does a normal EVAL,
APPLY or return.
*/
/* (PRIMITIVE-APPLY-STEP OPERATOR OPERANDS HUNK3)
Applies OPERATOR to OPERANDS and intalls the eval-trap,
apply-trap, and return-trap from HUNK3. If any
- trap is '(), it is a null trap that does a normal EVAL,
+ trap is #F, it is a null trap that does a normal EVAL,
APPLY or return.
Mostly a copy of Prim_Apply, since this, too, must count the space
\f
/* (PRIMITIVE-RETURN-STEP VALUE HUNK3)
Returns VALUE and intalls the eval-trap, apply-trap, and
- return-trap from HUNK3. If any trap is '(), it is a null trap
+ return-trap from HUNK3. If any trap is #F, it is a null trap
that does a normal EVAL, APPLY or return.
*/