From ea1269a0c267cf2c81d78f58e1cae7f8511d1c8f Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sun, 24 Oct 2010 14:39:13 -0600 Subject: [PATCH] define-runtime-module-path-index and racket/gui/dynamic fixes original commit: dee93e625984f3f92cb699a4e131eb34aee94874 --- collects/mzlib/runtime-path.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/mzlib/runtime-path.rkt b/collects/mzlib/runtime-path.rkt index 2be5f33..2c96054 100644 --- a/collects/mzlib/runtime-path.rkt +++ b/collects/mzlib/runtime-path.rkt @@ -11,7 +11,7 @@ (provide define-runtime-path define-runtime-paths define-runtime-path-list - define-runtime-module-path + define-runtime-module-path-index runtime-paths) (define-for-syntax ext-file-table (make-hasheq)) @@ -147,7 +147,7 @@ (syntax-case stx () [(_ id expr) #`(-define-runtime-path #,stx (id) expr values list)])) - (define-syntax (define-runtime-module-path stx) + (define-syntax (define-runtime-module-path-index stx) (syntax-case stx () [(_ id expr) #`(-define-runtime-path #,stx (id) `(module ,expr ,(#%variable-reference)) list values)]))