Skip to content

Commit c7bab7a

Browse files
samthjbclements
authored andcommitted
Handle quote-syntax.
Fixes #178. Related to #168. (cherry picked from commit d2aa76a)
1 parent 9175540 commit c7bab7a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

htdp-lib/stepper/private/reconstruct.rkt

+2-1
Original file line numberDiff line numberDiff line change
@@ -518,8 +518,9 @@
518518

519519
; quote
520520
[(quote body) (recon-value (eval-quoted expr) render-settings)]
521+
[(quote-syntax v #:local) (recon-value (eval-quoted #'(quote v)) render-settings)]
522+
[(quote-syntax v) (recon-value (eval-quoted #'(quote v)) render-settings)]
521523

522-
; quote-syntax : like set!, the current stepper cannot handle quote-syntax
523524

524525
; with-continuation-mark
525526
[(with-continuation-mark . rest) (recon-basic)]

0 commit comments

Comments
 (0)