From 9127a121c76f5d5606bca9a668bda5509ec3b830 Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Thu, 7 May 2009 22:55:45 +0200 Subject: PLT autodoc: define-for-syntax. --- scheme/plt/geiser/autodoc.ss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scheme/plt/geiser/autodoc.ss b/scheme/plt/geiser/autodoc.ss index 423f52e..a78f5f1 100644 --- a/scheme/plt/geiser/autodoc.ss +++ b/scheme/plt/geiser/autodoc.ss @@ -95,6 +95,10 @@ (add-signature! name formals store)) ((list 'define name (list 'lambda 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 ...)) + (add-signature! name formals store)) ((list 'define-syntax-rule (list name formals ...) body ...) (add-signature! name formals store)) (_ void))) -- cgit v1.2.3