Revert "Simplified unify map creation"

This reverts commit 8287f276d7.
This commit is contained in:
Paul deGrandis 2012-03-08 17:43:21 -05:00
parent 8287f276d7
commit 2c92818771

View file

@ -39,9 +39,10 @@
(when alt
{:expr expr
:rule rule
:alt (if (seq? alt)
(seq alt)
alt)
:alt (if (or (string? alt)
(not (sequential? alt)))
alt
(seq alt))
:line (-> expr meta :line)})))
;; Loop over the rule set.