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 bc2b328 commit a127268Copy full SHA for a127268
src/cider/nrepl/middleware/track_state.clj
@@ -22,9 +22,9 @@
22
(defn- var-meta-with-fn
23
"Like clojure.core/meta but adds {:fn true} for functions and macros.
24
Should only be used for vars."
25
- [var]
26
- (cond-> (meta var)
27
- (or (fn? @var) (instance? MultiFn @var)) (assoc :fn true)))
+ [the-var]
+ (cond-> (meta the-var)
+ (or (fn? @the-var) (instance? MultiFn @the-var)) (assoc :fn true)))
28
29
(defn filter-core-and-get-meta
30
"Remove keys whose values are vars in the core namespace."
0 commit comments