aboutsummaryrefslogtreecommitdiff
path: root/src/guile/skribilo/resolve.scm
diff options
context:
space:
mode:
authorLudovic Court`es2005-11-25 18:08:40 +0000
committerLudovic Court`es2005-11-25 18:08:40 +0000
commit38ef94ef3cd5417a907da6c8540d36734b4cde51 (patch)
tree614a937d50f79c3124f676700edf832a1341765f /src/guile/skribilo/resolve.scm
parentb76d5e1b252967521f210eac10ddbf089dde8c6a (diff)
downloadskribilo-38ef94ef3cd5417a907da6c8540d36734b4cde51.tar.gz
skribilo-38ef94ef3cd5417a907da6c8540d36734b4cde51.tar.lz
skribilo-38ef94ef3cd5417a907da6c8540d36734b4cde51.zip
Overhaul: emphasized logical separation of the modules.
* src/guile/skribilo/types.scm: Removed. Moved the class and method definitions in the relevant files. * src/guile/skribilo/ast.scm: New. * src/guile/skribilo/location.scm: New. * src/guile/skribilo/parameters.scm: Same as part of the former `vars.scm' except that it uses fluids instead of globals. * src/guile/skribilo/vars.scm: Renamed to `compat.scm'. * doc/Makefile: Removed (generated by `configure'). git-archimport-id: lcourtes@laas.fr--2004-libre/skribilo--devel--1.2--patch-11
Diffstat (limited to 'src/guile/skribilo/resolve.scm')
-rw-r--r--src/guile/skribilo/resolve.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guile/skribilo/resolve.scm b/src/guile/skribilo/resolve.scm
index a39bb77..7075f2d 100644
--- a/src/guile/skribilo/resolve.scm
+++ b/src/guile/skribilo/resolve.scm
@@ -27,7 +27,7 @@
(define-module (skribilo resolve)
:use-module (skribilo debug)
:use-module (skribilo runtime)
- :use-module (skribilo types)
+ :use-module (skribilo ast)
:use-module (skribilo lib) ;; `unless' and `when'
:use-module (oop goops)