changed :column to :pos in metadata

This commit is contained in:
Richard Harrington 2013-07-11 14:58:02 -04:00
parent b8f1af4acf
commit 757210e3c2

View File

@ -59,7 +59,7 @@
(defn pretty-print-tokens [token-seq]
(clojure.string/join
"\n"
(map #(format "%2d %s" (:column %) (:token %))
(map #(format "%2d %s" (:pos %) (:token %))
token-seq)))
(defn evaluate [token-seq]