Skip to content

Commit 2902715

Browse files
authored
Merge pull request #3 from leetwinski/handle-default-bindings
append `*default-special-bindings*` possibly set from elsewhere
2 parents 9c11f40 + fbddcaa commit 2902715

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)