aboutsummaryrefslogtreecommitdiff
path: root/src/combinator.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/combinator.lisp')
-rw-r--r--src/combinator.lisp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/combinator.lisp b/src/combinator.lisp
index 7602d3e..4c61a9b 100644
--- a/src/combinator.lisp
+++ b/src/combinator.lisp
@@ -79,6 +79,10 @@ apply the elements of REQUIREMENTS in reverse order."
;; should not be returned by property subroutines, per the spec
(defun apply-and-print (propapps &optional unapply)
(dolist (pa (if unapply (reverse propapps) propapps))
+ ;; TODO Nested combinators can mean that we establish this restart more
+ ;; than once, and they all appear in the debugger without any way to
+ ;; distinguish them. Perhaps we can use the :TEST argument to
+ ;; RESTART-CASE such that only the innermost(?) skip option appears.
(let* ((result (restart-case
(with-indented-inform
(if unapply (propappunapply pa) (propappapply pa)))