We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc40db6 commit 518f0fdCopy full SHA for 518f0fd
src/main/clojure/clojure/core/async.clj
@@ -86,8 +86,8 @@ IOC and vthread code.
86
(alias 'core 'clojure.core)
87
88
(def ^:private go-becomes-ioc?
89
- (not (or (dispatch/vthreads-available-and-allowed?)
90
- (dispatch/target-vthreads?))))
+ (not (and (dispatch/vthreads-available-and-allowed?)
+ (dispatch/target-vthreads?))))
91
92
(set! *warn-on-reflection* false)
93
@@ -533,7 +533,7 @@ IOC and vthread code.
533
(try
534
(let [result (binding [*ns* n
535
clojure.core/*loaded-libs* ll]
536
- (require nsym))]
+ (#'clojure.core/serialized-require nsym))]
537
(deliver p result))
538
(catch Throwable t
539
(deliver p t))))
0 commit comments