Fix PR14129

This commit is contained in:
Jay McCarthy 2013-10-28 13:22:12 -06:00
parent 386a862241
commit 5c373c5d07
2 changed files with 6 additions and 1 deletions

View File

@ -309,7 +309,9 @@
(abort-to-racklog-prompt #f))))
(abort-to-racklog-prompt
(list (cons 'v (logic-var-val* v))
...)))))))
...)))))
[(%which (v ...) g ...)
(%which (v ...) (%and g ...))]))
(define (%more)
(with-racklog-prompt

View File

@ -556,5 +556,8 @@
(%more) => #f
(%which () (%let (x) (%var 1))) => #f
(%which () (%let (x) (%and (%= x 1) (%var x)))) => #f
(%which () %true %true) => empty
(%more) => #f
)