diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-03-31 21:40:20 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-03-31 21:40:20 +0200 |
commit | 8c47f6099fd05e2feb7cb51e15d39911ef48411d (patch) | |
tree | 92758cbedba3ba02d94d83dc972007434e479bee /scheme/plt/geiser/autodoc.ss | |
parent | a2770a5c5fae6c7d845f2fe9b91ca7a1cec329e2 (diff) | |
download | geiser-guile-8c47f6099fd05e2feb7cb51e15d39911ef48411d.tar.gz geiser-guile-8c47f6099fd05e2feb7cb51e15d39911ef48411d.tar.bz2 |
PLT: geiser is now a regular module.
Diffstat (limited to 'scheme/plt/geiser/autodoc.ss')
-rw-r--r-- | scheme/plt/geiser/autodoc.ss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scheme/plt/geiser/autodoc.ss b/scheme/plt/geiser/autodoc.ss index 7e64c89..c317d5c 100644 --- a/scheme/plt/geiser/autodoc.ss +++ b/scheme/plt/geiser/autodoc.ss @@ -11,7 +11,7 @@ #lang scheme -(provide autodoc update-module-cache get-help) +(provide autodoc update-signature-cache get-help) (require geiser/utils geiser/modules geiser/locations scheme/help) @@ -176,7 +176,7 @@ ((list? arity) (map arity->signature arity)) (else (list (arity->signature arity))))) -(define (update-module-cache path . form) +(define (update-signature-cache path . form) (when (and (string? path) (or (null? form) (and (list? (car form)) |