From 59ab5582cc43f88273cc602cbe5ece542cad7f51 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 21 Aug 2015 02:06:32 -0400 Subject: [PATCH] Cleanup --- runtime.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/runtime.c b/runtime.c index 24280c4b..2311b56f 100644 --- a/runtime.c +++ b/runtime.c @@ -1965,8 +1965,10 @@ void Cyc_apply_from_buf(int argc, object prim, object *buf) { apply(cont, prim, (object)&args[0]); } +/** + * Copy an object to the GC heap + */ char *transport(x, gcgen) char *x; int gcgen; -/* Transport one object. WARNING: x cannot be nil!!! */ { if (nullp(x)) return x; if (obj_is_char(x)) return x;