Skip to content

Commit fbddcaa

Browse files
committed
append *default-special-bindings* possibly set from elsewhere
1 parent 9c11f40 commit fbddcaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/thread-util.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
`(progn ,@body))
158158

159159
(defmacro with-thread ((&key bindings name) &body body)
160-
`(let ((*default-special-bindings* ,bindings))
160+
`(let ((*default-special-bindings* (append ,bindings *default-special-bindings*)))
161161
(make-thread (lambda ()
162162
(with-abort-restart
163163
,@body))

0 commit comments

Comments
 (0)