Skip to content

Commit

Permalink
check for seq? instead of list? when removing 'quote from arglists
Browse files Browse the repository at this point in the history
  • Loading branch information
martinklepsch committed Nov 9, 2018
1 parent 3079986 commit 25b01ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codox/src/codox/reader/clojurescript.clj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
(-> file .getName cljs-filename?)))

(defn- remove-quote [x]
(if (and (list? x) (= (first x) 'quote))
(if (and (seq? x) (= (first x) 'quote))
(second x)
x))

Expand Down

0 comments on commit 25b01ae

Please sign in to comment.