From: Joshua Elsasser Date: Sat, 22 Sep 2012 18:44:28 +0000 (-0700) Subject: Fix nonthreaded build. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=1dededc3b3a9ec9dbff1707d74f8567d150c6d8e;p=sbcl.git Fix nonthreaded build. --- 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))))