Fixes Redex stepper's handling of symbols quoted with ||

This commit is contained in:
Casey Klein 2011-05-04 10:34:01 -05:00
parent 3187cac716
commit 4b03ddccb1
2 changed files with 4 additions and 1 deletions

View File

@ -46,7 +46,7 @@
(display "hole" op)]
[(eq? val 'hole)
(display ",'hole" op)]
[else (display val op)]))
[else (write val op)]))
(define reflowing-snip<%>
(interface ()

View File

@ -42,4 +42,7 @@
(cons (list (cons 15 16))
(list (cons 15 20))))
(test (diff (term |a'|) (term b))
(cons (list (cons 0 4)) (list (cons 0 1))))
(print-tests-passed 'stepper-test.ss)