Skip to content

Commit f7e87a5

Browse files
committed
if we cannot find a macro namespace in the current namespace try one more time w/ a global lookup
1 parent 9bf0706 commit f7e87a5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/main/clojure/cljs/analyzer.cljc

+5-2
Original file line numberDiff line numberDiff line change
@@ -3954,8 +3954,11 @@
39543954
:cljs [(identical? "clojure.repl" nstr) (find-macros-ns 'cljs.repl)])
39553955
#?@(:clj [(.contains nstr ".") (find-ns (symbol nstr))]
39563956
:cljs [(goog.string/contains nstr ".") (find-macros-ns (symbol nstr))])
3957-
:else (some-> env :ns :require-macros (get (symbol nstr)) #?(:clj find-ns
3958-
:cljs find-macros-ns)))))
3957+
:else
3958+
(or (some-> env :ns :require-macros (get (symbol nstr)) #?(:clj find-ns
3959+
:cljs find-macros-ns))
3960+
#?(:clj (find-ns (symbol nstr))
3961+
:cljs (find-macros-ns (symbol nstr)))))))
39593962

39603963
(defn get-expander* [sym env]
39613964
(when-not (or (some? (gets env :locals sym)) ; locals hide macros

0 commit comments

Comments
 (0)