diff options
author | Ludovic Court`es | 2006-01-11 17:35:50 +0000 |
---|---|---|
committer | Ludovic Court`es | 2006-01-11 17:35:50 +0000 |
commit | 929063bfca2404a927bf0bec047db37d490aa8e1 (patch) | |
tree | 1bfc645d4f0a274f55fadcf7a96d30290e90ca68 /src/guile/skribilo.scm | |
parent | 336198c0676db36d73dcdd437bc3b051f8d2b567 (diff) | |
download | skribilo-929063bfca2404a927bf0bec047db37d490aa8e1.tar.gz skribilo-929063bfca2404a927bf0bec047db37d490aa8e1.tar.lz skribilo-929063bfca2404a927bf0bec047db37d490aa8e1.zip |
Made compatible with the new `current-reader' as a fluid.
* *.scm: Use `fluid-set! current-reader %skribilo-module-reader' instead
of `set-current-reader'.
* src/guile/skribilo/utils/syntax.scm: Use `(system reader compat)'.
git-archimport-id: lcourtes@laas.fr--2004-libre/skribilo--devel--1.2--patch-24
Diffstat (limited to 'src/guile/skribilo.scm')
-rw-r--r-- | src/guile/skribilo.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guile/skribilo.scm b/src/guile/skribilo.scm index bf849ab..be914fb 100644 --- a/src/guile/skribilo.scm +++ b/src/guile/skribilo.scm @@ -51,7 +51,7 @@ exec ${GUILE-guile} --debug -l $0 -c "(apply $main (cdr (command-line)))" "$@" ;; Install the Skribilo module syntax reader. -(set-current-reader %skribilo-module-reader) +(fluid-set! current-reader %skribilo-module-reader) (if (not (keyword? :kw)) (error "guile-reader sucks")) |