about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorLudovic Courtès2015-05-27 13:41:46 +0200
committerLudovic Courtès2015-05-27 13:41:46 +0200
commit7a05f6a42aa0314cbe4d302add7ef676d550369e (patch)
tree31c0623b1cb156d6444ef998d34d5669467261e6 /src
parent52b13fec140bd34acaefbccb9fbfe15e5f6328c6 (diff)
downloadskribilo-7a05f6a42aa0314cbe4d302add7ef676d550369e.tar.gz
skribilo-7a05f6a42aa0314cbe4d302add7ef676d550369e.tar.lz
skribilo-7a05f6a42aa0314cbe4d302add7ef676d550369e.zip
ast: Don't autoload (skribilo location).
* src/guile/skribilo/ast.scm: Use (skribilo location) rather than
  auto-loading it, to avoid run-time unbound variable errors.
Diffstat (limited to 'src')
-rw-r--r--src/guile/skribilo/ast.scm5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/guile/skribilo/ast.scm b/src/guile/skribilo/ast.scm
index 3b30301..e7a488a 100644
--- a/src/guile/skribilo/ast.scm
+++ b/src/guile/skribilo/ast.scm
@@ -2,7 +2,7 @@
 ;;;
 ;;; Copyright 2003, 2004, 2009  Erick Gallesio - I3S-CNRS/ESSI <eg@unice.fr>
 ;;; Copyright 2003, 2004  Manuel Serrano
-;;; Copyright 2005, 2006, 2007, 2012, 2013  Ludovic Courtès <ludo@gnu.org>
+;;; Copyright 2005, 2006, 2007, 2012, 2013, 2015  Ludovic Courtès <ludo@gnu.org>
 ;;;
 ;;;
 ;;; This file is part of Skribilo.
@@ -29,8 +29,7 @@
   :use-module (srfi srfi-35)
   :use-module (skribilo condition)
   :use-module (skribilo utils syntax)
-
-  :autoload (skribilo location) (location?)
+  :use-module (skribilo location)
 
   :use-module (ice-9 match)
   :use-module (ice-9 optargs)