diff options
author | Ludovic Courtès | 2020-08-01 16:58:33 +0200 |
---|---|---|
committer | Ludovic Courtès | 2020-08-01 17:00:15 +0200 |
commit | 6a890c20d685e1862c2af0fb8b69c116c5e3f857 (patch) | |
tree | 45af85b4c7d3f66ce346ad43145fe10a7f4c9f43 /src/guile/skribilo/utils/images.in | |
parent | 6b64f84d234927e84fdd9290721384a0aba27de7 (diff) | |
download | skribilo-6a890c20d685e1862c2af0fb8b69c116c5e3f857.tar.gz skribilo-6a890c20d685e1862c2af0fb8b69c116c5e3f857.tar.lz skribilo-6a890c20d685e1862c2af0fb8b69c116c5e3f857.zip |
Adjust autoload lists.
In preparation for Guile 3 support, adjust #:autoload clauses to include
list all the necessary bindings, or replace them with #:use-module.
Diffstat (limited to 'src/guile/skribilo/utils/images.in')
-rw-r--r-- | src/guile/skribilo/utils/images.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/guile/skribilo/utils/images.in b/src/guile/skribilo/utils/images.in index 672e8b5..9dc5999 100644 --- a/src/guile/skribilo/utils/images.in +++ b/src/guile/skribilo/utils/images.in @@ -1,6 +1,6 @@ ;;; images.scm -- Images handling utilities. ;;; -;;; Copyright 2005, 2006, 2007, 2008 Ludovic Courtès <ludo@gnu.org> +;;; Copyright 2005, 2006, 2007, 2008, 2020 Ludovic Courtès <ludo@gnu.org> ;;; Copyright 2003, 2004 Erick Gallesio - I3S-CNRS/ESSI <eg@unice.fr> ;;; ;;; @@ -24,14 +24,12 @@ *fig-convert-program* *generic-convert-program*) #:autoload (skribilo utils files) (file-suffix file-prefix) - #:autoload (skribilo parameters) (*image-path* *verbose*) + #:use-module (skribilo parameters) #:autoload (skribilo condition) (&file-search-error) #:autoload (srfi srfi-34) (raise) #:use-module (srfi srfi-35) #:use-module (srfi srfi-39)) -;;; Author: Erick Gallesio, Ludovic Courtès -;;; ;;; Commentary: ;;; ;;; This module provides convenience functions to handle image files, notably |