From 28fe3fb7fdfd553db0f892d5de09c4dba5b97a91 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Fri, 7 Oct 2011 15:01:06 +0900 Subject: [PATCH] fixing references to .module --- Makefile | 2 +- doc/chibi.scrbl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 582d82bd..9e39aedc 100644 --- a/Makefile +++ b/Makefile @@ -184,7 +184,7 @@ lib/%$(SO): lib/%.c $(INCLUDES) %.html: %.scrbl tools/chibi-doc chibi-scheme$(EXE) $(CHIBI) tools/chibi-doc $< > $@ -doc/lib/chibi/%.html: lib/chibi/%.module tools/chibi-doc chibi-scheme$(EXE) +doc/lib/chibi/%.html: lib/chibi/%.sld tools/chibi-doc chibi-scheme$(EXE) $(CHIBI) tools/chibi-doc chibi.$* > $@ MODULE_DOCS := ast disasm equiv filesystem generic heap-stats io loop \ diff --git a/doc/chibi.scrbl b/doc/chibi.scrbl index d960168e..69a209dd 100755 --- a/doc/chibi.scrbl +++ b/doc/chibi.scrbl @@ -153,7 +153,7 @@ system, is provided if you choose to use it. Modules names are hierarchical lists of symbols or numbers. The definition of the module @scheme{(foo bar baz)} is searched for in the file -foo/bar/baz.module. This file should contain an expression of the form: +foo/bar/baz.sld. This file should contain an expression of the form: @schemeblock{ (module (foo bar baz) @@ -183,7 +183,7 @@ These forms perform basic selection and renaming of individual identifiers from the given module. They may be composed to perform combined selection and renaming. -Files are loaded relative to the .module file, and are written with +Files are loaded relative to the .sld file, and are written with their extension (so you can use whatever suffix you prefer - .scm, .ss, .sls, etc.).