www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit d7456a2df631dd9f70456e4ac3a3987bca30facf
parent 32a5cfb1ac5049132e837f84c2789fa1e9524fce
Author: Ryan Culpepper <ryanc@racket-lang.org>
Date:   Tue, 29 Nov 2011 18:45:24 -0700

macro-stepper: temp fix for drracket tool
  closes PR 12349, closes PR 10396

The macro stepper tool broke when DrRacket started doing expansion
earlier, before eval handler gets control. This commit changes the
macro stepper to just expand module contents. No REPL, no evaluation.

The long-term fix might be to make the macro stepper cooperate more
closely with the module language.

original commit: 0db96352bf199423ae7ac4234ffc32c6f1a28888

Diffstat:
Mcollects/macro-debugger/info.rkt | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/collects/macro-debugger/info.rkt b/collects/macro-debugger/info.rkt @@ -1,5 +1,5 @@ #lang setup/infotab -(define tools '(["tool.rkt"])) -(define tool-names '("Macro Stepper")) +(define drracket-tools '(["tool.rkt"])) +(define drracket-tool-names '("Macro Stepper")) (define scribblings '(("macro-debugger.scrbl" () (tool-library))))