Skip to content
Snippets Groups Projects
Commit 675a964b authored by Cam Saul's avatar Cam Saul
Browse files

fix expansion of all-nil clauses in Query Expander

parent e042cb21
No related branches found
No related tags found
No related merge requests found
......@@ -221,7 +221,8 @@
`(defn ~(vary-meta fn-name assoc :private true) [form#]
(when (and form#
(or (not (sequential? form#))
(seq form#)))
(and (seq form#)
(every? identity form#))))
(match form#
~@match-forms))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment