diff options
-rw-r--r-- | src/clojure/contrib/walk.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clojure/contrib/walk.clj b/src/clojure/contrib/walk.clj index 5c1e9a3e..a3ba8b35 100644 --- a/src/clojure/contrib/walk.clj +++ b/src/clojure/contrib/walk.clj @@ -118,5 +118,5 @@ (defn macroexpand-all "Recursively performs all possible macroexpansions in form." [form] - (prewalk (fn [x] (if (list? x) (macroexpand x) x)) form)) + (prewalk (fn [x] (if (seq? x) (macroexpand x) x)) form)) |