Skip to content

Commit

Permalink
Don't declare
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-s committed Jul 3, 2024
1 parent b65cec4 commit 3c40620
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/loader.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,10 @@ after initializing callable symbols[^3].
#+darwin
(setf sb-thread::*initial-thread* sb-thread:*current-thread*)
(unwind-protect
(locally
(declare (sb-ext:muffle-conditions sb-kernel:redefinition-warning style-warning))
(handler-bind
((sb-kernel:redefinition-warning #'muffle-warning))
(load pathname)))
(handler-bind
((sb-kernel:redefinition-warning #'muffle-warning)
(style-warning #'muffle-warning))
(load pathname))
#+darwin
(setf sb-thread::*initial-thread* initial-thread))))

Expand Down

0 comments on commit 3c40620

Please sign in to comment.