summaryrefslogtreecommitdiff
path: root/core.lisp
diff options
context:
space:
mode:
authorJuan Manuel Tomás <jtomas1815@gmail.com>2024-10-13 03:55:39 -0300
committerJuan Manuel Tomás <jtomas1815@gmail.com>2024-10-13 03:55:39 -0300
commit7639ac05500dafd7871bcbc35e3b2af00a079656 (patch)
tree70cbe2753e345891d6749b350cf13cc74e4ffc59 /core.lisp
parent6659f26d557d792a0bf3f596a0d87aa69a7f2317 (diff)
downloadmonparser-7639ac05500dafd7871bcbc35e3b2af00a079656.tar.gz
monparser-7639ac05500dafd7871bcbc35e3b2af00a079656.zip
Fix undefined function cursor
Diffstat (limited to 'core.lisp')
-rw-r--r--core.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core.lisp b/core.lisp
index 3d3f4e8..be12f99 100644
--- a/core.lisp
+++ b/core.lisp
@@ -48,8 +48,8 @@
(push r intermediate-parsers))
((parsing-p r)
(when (or (not (parsing-p result))
- (> (cursor (parsing-left r))
- (cursor (parsing-left result))))
+ (> (input-cursor (parsing-left r))
+ (input-cursor (parsing-left result))))
(setf result r)))
((failure-p r)
(when (or (failure-p result)