From 8bc5b79df78aeefa8fc15b040deb43fb14846d26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 22 Feb 2011 00:07:48 +0100 Subject: [PATCH] Add omitted exports from `(ice-9 vlist)'. * module/ice-9/vlist.scm: Export `vhash-delq' and `vhash-delv'. --- module/ice-9/vlist.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/module/ice-9/vlist.scm b/module/ice-9/vlist.scm index 5ea09362c..cd1b9b846 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 Free Software Foundation, Inc. +;;; Copyright (C) 2009, 2010, 2011 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 @@ -32,7 +32,8 @@ vhash? vhash-cons vhash-consq vhash-consv vhash-assoc vhash-assq vhash-assv - vhash-delete vhash-fold + vhash-delete vhash-delq vhash-delv + vhash-fold vhash-fold* vhash-foldq* vhash-foldv* alist->vhash))