/* -*-C-*-
-$Id: lookup.c,v 9.53 1993/09/09 18:16:08 gjr Exp $
+$Id: lookup.c,v 9.54 1993/09/09 18:17:46 gjr Exp $
Copyright (c) 1988-1993 Massachusetts Institute of Technology
This makes cache_reference_end do the right thing.
*/
clone = (FAST_MEMORY_REF (extension, TRAP_EXTENSION_CLONE));
- tail = *slot;
+ tail = * slot;
- for (pair = (* cell); pair != ((SCHEME_OBJECT) NULL); pair = (* cell))
+ for (pair = (* cell); pair != EMPTY_LIST; pair = (* cell))
{
weak_pair = (FAST_PAIR_CAR (pair));
result = (cache_reference_end (kind, extension, clone,
return (result);
}
- *slot = pair;
+ * slot = pair;
slot = (PAIR_CDR_LOC (pair));
- *cell = *slot;
+ * cell = * slot;
}
- *slot = tail;
+ * slot = tail;
return (PRIM_DONE);
}
\f
/* -*-C-*-
-$Id: lookup.c,v 9.53 1993/09/09 18:16:08 gjr Exp $
+$Id: lookup.c,v 9.54 1993/09/09 18:17:46 gjr Exp $
Copyright (c) 1988-1993 Massachusetts Institute of Technology
This makes cache_reference_end do the right thing.
*/
clone = (FAST_MEMORY_REF (extension, TRAP_EXTENSION_CLONE));
- tail = *slot;
+ tail = * slot;
- for (pair = (* cell); pair != ((SCHEME_OBJECT) NULL); pair = (* cell))
+ for (pair = (* cell); pair != EMPTY_LIST; pair = (* cell))
{
weak_pair = (FAST_PAIR_CAR (pair));
result = (cache_reference_end (kind, extension, clone,
return (result);
}
- *slot = pair;
+ * slot = pair;
slot = (PAIR_CDR_LOC (pair));
- *cell = *slot;
+ * cell = * slot;
}
- *slot = tail;
+ * slot = tail;
return (PRIM_DONE);
}
\f