diff options
author | Ludovic Court`es | 2007-06-11 13:43:29 +0000 |
---|---|---|
committer | Ludovic Court`es | 2007-06-11 13:43:29 +0000 |
commit | d69664e7c753868f0246cdf897091c5132b0d001 (patch) | |
tree | 88b749ea414e1dd02334882ffe10dc4a7a9cb5a9 /src | |
parent | 3f0d8774b2920e2922a963d5f96b533ca865acae (diff) | |
download | skribilo-d69664e7c753868f0246cdf897091c5132b0d001.tar.gz skribilo-d69664e7c753868f0246cdf897091c5132b0d001.tar.lz skribilo-d69664e7c753868f0246cdf897091c5132b0d001.zip |
Reduced dependency on `(skribilo module)'.
* src/guile/skribilo/engine.scm: Don't `(use-modules (skribilo module))'
before initializing `*current-engine*' (no longer needed).
git-archimport-id: lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-71
Diffstat (limited to 'src')
-rw-r--r-- | src/guile/skribilo/engine.scm | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/guile/skribilo/engine.scm b/src/guile/skribilo/engine.scm index 06667ad..8a2f0e7 100644 --- a/src/guile/skribilo/engine.scm +++ b/src/guile/skribilo/engine.scm @@ -1,7 +1,7 @@ ;;; engine.scm -- Skribilo engines. ;;; -;;; Copyright 2003-2004 Erick Gallesio - I3S-CNRS/ESSI <eg@essi.fr> -;;; Copyright 2005 Ludovic Courtès <ludovic.courtes@laas.fr> +;;; Copyright 2003, 2004 Erick Gallesio - I3S-CNRS/ESSI <eg@essi.fr> +;;; Copyright 2005, 2007 Ludovic Courtès <ludovic.courtes@laas.fr> ;;; ;;; ;;; This program is free software; you can redistribute it and/or modify @@ -370,11 +370,7 @@ otherwise the requested engine is returned." ;;; Current engine. ;;; -;;; `(skribilo module)' must be loaded before the first `find-engine' call. -(use-modules (skribilo module)) - ;; At this point, we're almost done with the bootstrap process. -;(format #t "base engine: ~a~%" (lookup-engine 'base)) (define *current-engine* ;; By default, use the HTML engine. |