diff options
author | Ludovic Court`es | 2007-06-11 15:59:21 +0000 |
---|---|---|
committer | Ludovic Court`es | 2007-06-11 15:59:21 +0000 |
commit | 4bc8ca4a30e3a1348d4e6362ac3ff60b2ed10911 (patch) | |
tree | 82fc425021426f422701f60b06d99af46bb0b7ca | |
parent | 14755963383184679e58eea7a6d82443500634d5 (diff) | |
parent | d69664e7c753868f0246cdf897091c5132b0d001 (diff) | |
download | skribilo-4bc8ca4a30e3a1348d4e6362ac3ff60b2ed10911.tar.gz skribilo-4bc8ca4a30e3a1348d4e6362ac3ff60b2ed10911.tar.lz skribilo-4bc8ca4a30e3a1348d4e6362ac3ff60b2ed10911.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: skribilo@sv.gnu.org--2006/skribilo--devo--1.2--patch-112
-rw-r--r-- | ChangeLog | 17 | ||||
-rw-r--r-- | src/guile/skribilo/engine.scm | 8 |
2 files changed, 19 insertions, 6 deletions
@@ -2,6 +2,23 @@ # arch-tag: automatic-ChangeLog--skribilo@sv.gnu.org--2006/skribilo--devo--1.2 # +2007-06-11 15:59:21 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-112 + + Summary: + Reduced dependency on `(skribilo module)'. + Revision: + skribilo--devo--1.2--patch-112 + + * src/guile/skribilo/engine.scm: Don't `(use-modules (skribilo module))' + before initializing `*current-engine*' (no longer needed). + + modified files: + ChangeLog src/guile/skribilo/engine.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-71 + + 2007-06-11 15:58:22 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-111 Summary: 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. |