diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-01-24 10:03:02 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-01-24 10:03:02 +0100 |
commit | 228e9ec137be1e7a2bc05641f975b52d1ad84416 (patch) | |
tree | 0c222e2d5077d2eb97d83e72bf387100f35559c3 /module/ice-9 | |
parent | 5765c5a82ce3891faff02c0bcc603cc0fe5ae36d (diff) | |
download | guile-228e9ec137be1e7a2bc05641f975b52d1ad84416.tar.gz |
vlist: Use (ice-9 format).
* module/ice-9/vlist.scm: Use (ice-9 format).
Diffstat (limited to 'module/ice-9')
-rw-r--r-- | module/ice-9/vlist.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/ice-9/vlist.scm b/module/ice-9/vlist.scm index a62bf59f2..0ed4b6d32 100644 --- a/module/ice-9/vlist.scm +++ b/module/ice-9/vlist.scm @@ -1,6 +1,6 @@ ;;; -*- mode: scheme; coding: utf-8; -*- ;;; -;;; Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc. +;;; Copyright (C) 2009, 2010, 2011, 2012 Free Software Foundation, Inc. ;;; ;;; This library is free software; you can redistribute it and/or ;;; modify it under the terms of the GNU Lesser General Public @@ -21,6 +21,7 @@ #:use-module (srfi srfi-9) #:use-module (srfi srfi-9 gnu) #:use-module (srfi srfi-26) + #:use-module (ice-9 format) #:export (vlist? vlist-cons vlist-head vlist-tail vlist-null? vlist-null list->vlist vlist-ref vlist-drop vlist-take |