summaryrefslogtreecommitdiffstats
path: root/txr.1
diff options
context:
space:
mode:
Diffstat (limited to 'txr.1')
-rw-r--r--txr.15
1 files changed, 3 insertions, 2 deletions
diff --git a/txr.1 b/txr.1
index fcf6ce6b..68582448 100644
--- a/txr.1
+++ b/txr.1
@@ -52008,8 +52008,9 @@ and
(defun amb (. args)
(suspend amb-scope cont
(each ((a args))
- (when (and a (call cont a))
- (return-from amb a)))))
+ (if a
+ (iflet ((r (call cont a)))
+ (return-from amb-scope r))))))
.brev
Use