Skip to content

Commit

Permalink
bug fix: print-node cannot print first item in special-form list.
Browse files Browse the repository at this point in the history
  • Loading branch information
hozumi committed May 3, 2010
1 parent d7316fb commit 06523a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/hozumi/eyewrap.clj
Expand Up @@ -236,7 +236,8 @@
limited-size-v (lazy-chked-v out)
[first-child :as my-childs] (reverse (vals child))
target-childs (cond (and (seq? form)
(coll? (:out first-child))) my-childs
(or (special-symbol? (first form))
(coll? (:out first-child)))) my-childs
(and (seq? form)
(elem? (:out first-child))) (rest my-childs)
(coll? form) my-childs)]
Expand Down

0 comments on commit 06523a6

Please sign in to comment.