summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/guile/skribilo.scm10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/guile/skribilo.scm b/src/guile/skribilo.scm
index 0578c9d..44e57e4 100644
--- a/src/guile/skribilo.scm
+++ b/src/guile/skribilo.scm
@@ -1,6 +1,6 @@
;;; skribilo.scm -- The Skribilo document processor.
;;;
-;;; Copyright 2005, 2006, 2007 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright 2005, 2006, 2007, 2008 Ludovic Courtès <ludo@gnu.org>
;;; Copyright 2003, 2004 Erick Gallesio - I3S-CNRS/ESSI <eg@unice.fr>
;;;
;;;
@@ -82,7 +82,7 @@ specified reader syntax, and produce its output using the specified engine.
-v, --verbose[=LEVEL] Be verbose, unless LEVEL is 0.
-w, --warning[=LEVEL] Issue warnings, unless LEVEL is 0.
- -d, --debug[=ARG] Issue debugging output, unless ARG is 0. If ARG is
+ -g, --debug[=ARG] Issue debugging output, unless ARG is 0. If ARG is
not a number, it is interpreted as a symbol to be
watched.
--no-color Disable colored debugging output.
@@ -319,6 +319,7 @@ options."
(for-each (lambda (f)
(save-module-excursion
(lambda ()
+ (set-current-module user-module)
(load f))))
(or preloads '()))
@@ -349,4 +350,9 @@ options."
;; Make sure the output port is flushed before we leave.
(force-output (*skribilo-output-port*))))))
+
+;;; Local Variables:
+;;; coding: latin-1
+;;; End:
+
;;; skribilo ends here.