diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2025-05-26 19:14:28 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2025-05-26 19:14:28 -0300 |
commit | 2e8323c2af42e817e98eb931eb733dc42c832448 (patch) | |
tree | 1e96038cae732f1cdd9e29f0737540bc3a9806bb | |
parent | 688ade34430eb1d4d205698cae810c35c8f44d21 (diff) | |
download | monparser-2e8323c2af42e817e98eb931eb733dc42c832448.tar.gz monparser-2e8323c2af42e817e98eb931eb733dc42c832448.zip |
Remove surround
-rw-r--r-- | extra.lisp | 6 | ||||
-rw-r--r-- | package.lisp | 3 |
2 files changed, 1 insertions, 8 deletions
@@ -50,9 +50,3 @@ (separated-list p separator) nothing))) (cons v vn))) - -(defun surround (p left &optional right) - (comp ((_ left) - (body p) - (_ (or right left))) - body)) diff --git a/package.lisp b/package.lisp index cf3f1df..2b64c6f 100644 --- a/package.lisp +++ b/package.lisp @@ -17,5 +17,4 @@ #:repeat #:whitespace? #:whitespace - #:separated-list - #:surround)) + #:separated-list)) |