summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Manuel Tomás <jtomas1815@gmail.com>2025-06-09 02:45:24 -0300
committerJuan Manuel Tomás <jtomas1815@gmail.com>2025-06-09 02:45:24 -0300
commit2556460ea3fb9d52db1f24b287b35dc7b0f62cab (patch)
tree6f66a4e83f9ab7a45f67b1c0ce9aa2b77e778588
parenta4a4c78d13e9eab2427b930c067278207508d60e (diff)
downloadmonparser-2556460ea3fb9d52db1f24b287b35dc7b0f62cab.tar.gz
monparser-2556460ea3fb9d52db1f24b287b35dc7b0f62cab.zip
Remove separated-list
-rw-r--r--extra.lisp8
-rw-r--r--package.lisp3
2 files changed, 1 insertions, 10 deletions
diff --git a/extra.lisp b/extra.lisp
index b738da7..6453751 100644
--- a/extra.lisp
+++ b/extra.lisp
@@ -42,11 +42,3 @@
(defparameter whitespace
(optional (many (unit whitespace?))))
-
-(defun separated-list (p separator)
- (comp ((v p)
- (sep (optional separator))
- (vn (if sep
- (separated-list p separator)
- nothing)))
- (cons v vn)))
diff --git a/package.lisp b/package.lisp
index 2b64c6f..7067dfb 100644
--- a/package.lisp
+++ b/package.lisp
@@ -16,5 +16,4 @@
#:many
#:repeat
#:whitespace?
- #:whitespace
- #:separated-list))
+ #:whitespace))