summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <cbeok@protonmail.com>2020-04-22 21:37:25 -0500
committerColin Okay <cbeok@protonmail.com>2020-04-22 21:37:25 -0500
commit5671a0700c8d5ed791594b70d978c1114242d9e9 (patch)
treebd6051899da93266211ebf9b612c603ed74fb223
parentec36347f8f91d365d3563513e1731ee368ca34fb (diff)
bump and reauthor
-rw-r--r--parzival.asd4
-rw-r--r--parzival.lisp1
2 files changed, 3 insertions, 2 deletions
diff --git a/parzival.asd b/parzival.asd
index c819f69..c67ffeb 100644
--- a/parzival.asd
+++ b/parzival.asd
@@ -2,9 +2,9 @@
(asdf:defsystem #:parzival
:description "Streaming parser language in Common Lisp."
- :author "Boutade <thegoofist@protonmail.com>"
+ :author "Colin Okay <cbeok@protonmail.com>"
:license "GPLv3"
- :version "0.3.0"
+ :version "0.4.0"
:serial t
:depends-on (#:replay-streams)
:components ((:file "package")
diff --git a/parzival.lisp b/parzival.lisp
index 7eaa611..068d3b5 100644
--- a/parzival.lisp
+++ b/parzival.lisp
@@ -30,6 +30,7 @@
;;; The PARSE function. Runs parsers.
+
;; TODO refactor parse to detect how best to create a replay stream, automatically
(defun parse (stream parser &optional string-as-stream-p)
"Parse STREAM with PARSER. If STRING-AS-STREAM-P then STREAM can be a string."