diff options
author | Ludovic Courtès | 2010-06-20 18:59:53 +0200 |
---|---|---|
committer | Ludovic Courtès | 2010-06-20 18:59:53 +0200 |
commit | d2ac6a27d035839cd7057e3b8c251342b4065010 (patch) | |
tree | 8c89cc5da4ebdc178630247f2fbd1819f7c62bb3 | |
parent | cb194340e9e19cbd39626a4bd2613846dcf9b707 (diff) | |
download | skribilo-d2ac6a27d035839cd7057e3b8c251342b4065010.tar.gz skribilo-d2ac6a27d035839cd7057e3b8c251342b4065010.tar.lz skribilo-d2ac6a27d035839cd7057e3b8c251342b4065010.zip |
pie: Fix unbound variable related to autoload tricks.
* src/guile/skribilo/package/pie.scm: Use `(skribilo ast)' instead of
trying to autoload it.
-rw-r--r-- | src/guile/skribilo/package/pie.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/guile/skribilo/package/pie.scm b/src/guile/skribilo/package/pie.scm index 35b3a92..c9e7da0 100644 --- a/src/guile/skribilo/package/pie.scm +++ b/src/guile/skribilo/package/pie.scm @@ -1,7 +1,7 @@ ;;; pie.scm -- An pie-chart formatting package. -;;; -*- coding: iso-8859-1 -*- +;;; -*- coding: utf-8 -*- ;;; -;;; Copyright 2005, 2006, 2007, 2009 Ludovic Courtès <ludo@gnu.org> +;;; Copyright 2005, 2006, 2007, 2009, 2010 Ludovic Courtès <ludo@gnu.org> ;;; ;;; ;;; This program is free software; you can redistribute it and/or modify @@ -20,7 +20,7 @@ ;;; USA. (define-module (skribilo package pie) - :autoload (skribilo ast) (markup? markup-ident ast-parent) + :use-module (skribilo ast) :autoload (skribilo output) (output) :use-module (skribilo writer) :use-module (skribilo engine) |