mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 14:19:18 +02:00
fixing references to .module
This commit is contained in:
parent
e88d85f107
commit
28fe3fb7fd
2 changed files with 3 additions and 3 deletions
2
Makefile
2
Makefile
|
@ -184,7 +184,7 @@ lib/%$(SO): lib/%.c $(INCLUDES)
|
||||||
%.html: %.scrbl tools/chibi-doc chibi-scheme$(EXE)
|
%.html: %.scrbl tools/chibi-doc chibi-scheme$(EXE)
|
||||||
$(CHIBI) tools/chibi-doc $< > $@
|
$(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.$* > $@
|
$(CHIBI) tools/chibi-doc chibi.$* > $@
|
||||||
|
|
||||||
MODULE_DOCS := ast disasm equiv filesystem generic heap-stats io loop \
|
MODULE_DOCS := ast disasm equiv filesystem generic heap-stats io loop \
|
||||||
|
|
|
@ -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
|
Modules names are hierarchical lists of symbols or numbers. The definition of
|
||||||
the module @scheme{(foo bar baz)} is searched for in the file
|
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{
|
@schemeblock{
|
||||||
(module (foo bar baz)
|
(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
|
identifiers from the given module. They may be composed to perform
|
||||||
combined selection and renaming.
|
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,
|
their extension (so you can use whatever suffix you prefer - .scm,
|
||||||
.ss, .sls, etc.).
|
.ss, .sls, etc.).
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue