From 1dededc3b3a9ec9dbff1707d74f8567d150c6d8e Mon Sep 17 00:00:00 2001 From: Joshua Elsasser Date: Sat, 22 Sep 2012 11:44:28 -0700 Subject: [PATCH] Fix nonthreaded build. --- src/code/target-thread.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/code/target-thread.lisp b/src/code/target-thread.lisp index ec60aab..74a89e2 100644 --- a/src/code/target-thread.lisp +++ b/src/code/target-thread.lisp @@ -1360,7 +1360,7 @@ Invoking the initial ABORT restart estabilished by MAKE-THREAD terminates the thread. See also: RETURN-FROM-THREAD, ABORT-THREAD." - #!-sb-thread (declare (ignore function name arguments)) + #!-sb-thread (declare (ignore function name arguments ephemeral)) #!-sb-thread (error "Not supported in unithread builds.") #!+sb-thread (assert (or (atom arguments) (null (cdr (last arguments)))) -- 1.7.10.4