aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoin Okay <cbeok@protonmail.com>2020-04-22 23:19:47 -0500
committerCoin Okay <cbeok@protonmail.com>2020-04-22 23:19:47 -0500
commitfc26a73b9278d79e2558e2845cb353a2131e4005 (patch)
tree42f0b879888f94a9f3490502e85a3917c4a07f81
parent9d5bb80a895e137cf3dde2ee14e1edeaaecbac82 (diff)
stripped parzival package from symbols in lazybones.decoders
-rw-r--r--decoders.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/decoders.lisp b/decoders.lisp
index fecb83a..e7ea491 100644
--- a/decoders.lisp
+++ b/decoders.lisp
@@ -51,12 +51,12 @@
(<<def <word-plus<
- (<<to-string (<<+ (<<or parzival:<alphanum< (<<any-char "-_/. "))))
+ (<<to-string (<<+ (<<or <alphanum< (<<any-char "-_/. "))))
"parses a word like foo-bar or foo-bar-zoo4")
(<<def <key-equal-val<
- (<<let ((key (<<and parzival:<whitespace< <word-plus<))
+ (<<let ((key (<<and <whitespace< <word-plus<))
(val (<<and (<<char #\=)
(<<char-brackets #\" <word-plus< #\"))))
(<<result (list (make-keyword key) val)))