diff options
-rw-r--r-- | scheme/plt/geiser/autodoc.ss | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scheme/plt/geiser/autodoc.ss b/scheme/plt/geiser/autodoc.ss index a78f5f1..f7a0c55 100644 --- a/scheme/plt/geiser/autodoc.ss +++ b/scheme/plt/geiser/autodoc.ss @@ -91,10 +91,12 @@ (match datum ((list 'module name lang forms ...) (for-each (lambda (f) (parse-datum! f store)) forms)) - ((list 'define (list name formals ...) body ...) + ((list 'define (list (list name formals ...) other ...) body ...) (add-signature! name formals store)) ((list 'define name (list 'lambda formals body ...)) (add-signature! name formals store)) + ((list 'define (list name formals ...) body ...) + (add-signature! name formals store)) ((list 'define-for-syntax (list name formals ...) body ...) (add-signature! name formals store)) ((list 'define-for-syntax name (list 'lambda formals body ...)) |