From 99c899220712d9fa8145c6d7fda00caec50fedfb Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Sun, 26 May 2013 08:58:19 +0900 Subject: [PATCH] make-thread no longer needs to reset the dynamic continuation --- lib/srfi/18/threads.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/srfi/18/threads.c b/lib/srfi/18/threads.c index ae454c56..4c7808ce 100644 --- a/lib/srfi/18/threads.c +++ b/lib/srfi/18/threads.c @@ -96,7 +96,6 @@ sexp sexp_make_thread (sexp ctx, sexp self, sexp_sint_t n, sexp thunk, sexp name stack[2] = sexp_global(ctx, SEXP_G_FINAL_RESUMER); sexp_context_top(res) = 4; sexp_context_last_fp(res) = 0; - sexp_context_dk(res) = sexp_list1(ctx, SEXP_FALSE); sexp_gc_release1(ctx); return res; }