From c8c43bbe3432c02e9a75beda1cd94a48748a385e Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 10 Sep 2009 19:42:30 +0000 Subject: [PATCH] fix docs for get-module-code svn: r15965 --- collects/syntax/scribblings/modcode.scrbl | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/collects/syntax/scribblings/modcode.scrbl b/collects/syntax/scribblings/modcode.scrbl index b34817de1f..27e2403b83 100644 --- a/collects/syntax/scribblings/modcode.scrbl +++ b/collects/syntax/scribblings/modcode.scrbl @@ -7,9 +7,12 @@ @defmodule[syntax/modcode] @defproc[(get-module-code [module-path-v module-path?] - [compiled-subdir (and/c path-string? relative-path?) "compiled"] - [compile-proc (any/c . -> . any) compile] - [ext-proc (or/c false/c (path? boolean? . -> . any)) #f] + [#:sub-path compiled-subdir0 (and/c path-string? relative-path?) "compiled"] + [compiled-subdir (and/c path-string? relative-path?) compiled-subdir0] + [#:compile compile-proc0 (any/c . -> . any) compile] + [compile-proc (any/c . -> . any) compile-proc0] + [#:extension-handler ext-proc0 (or/c false/c (path? boolean? . -> . any)) #f] + [ext-proc (or/c false/c (path? boolean? . -> . any)) ext-proc0] [#:choose choose-proc (path? path? path? . -> .