[racket] Macro stepper and parameterize

From: Lorenz Köhl (rainbowtwigs at gmail.com)
Date: Fri Oct 5 23:04:16 EDT 2012

The macro stepper doesn't show the expansion of the following macro
for me, but only when inside the parameterize. Is this expected? Seems
really odd to me. I tried un-ignoring it and parameterize, didn't
help.

(define-syntax-rule (hi x)
  (display (string-append "Hi, " x "!")))

(define foo (make-parameter 1))
(parameterize ([foo 'bar])
  (hi "foo"))

I use version 5.3.0.24--2012-09-29(60a0358/a)

It also ignores macros in the test submodule, which is probably wanted?

Lo

Posted on the users mailing list.