summaryrefslogtreecommitdiff
path: root/extra.lisp
diff options
context:
space:
mode:
authorJuan Manuel Tomás <jtomas1815@gmail.com>2025-12-31 21:55:24 -0300
committerJuan Manuel Tomás <jtomas1815@gmail.com>2025-12-31 21:55:24 -0300
commit633ee6f51e93ee36a87cca9f5d9628f2ca5538e4 (patch)
tree5818dd32c63aab8ad9711301d745928380060007 /extra.lisp
parent9566e92321a1ed29a7f5903a3ba4ab16de3783b9 (diff)
downloadmonparser-633ee6f51e93ee36a87cca9f5d9628f2ca5538e4.tar.gz
monparser-633ee6f51e93ee36a87cca9f5d9628f2ca5538e4.zip
Fix repeat type declaration
Diffstat (limited to 'extra.lisp')
-rw-r--r--extra.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra.lisp b/extra.lisp
index c0a6a8a..3b64096 100644
--- a/extra.lisp
+++ b/extra.lisp
@@ -4,7 +4,7 @@
(or (char= it #\Space)
(not (graphic-char-p it))))
-(declaim (ftype (function (parser integer integer) parser) repeat))
+(declaim (ftype (function (parser integer &optional integer) parser) repeat))
(defun repeat (p min &optional (max 0))
(if (> min 0)
(comp ((x p)