From 056c43e7db2df8a051c1058feaf70c632730bec9 Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Fri, 6 Jun 2003 22:36:17 +0000 Subject: [PATCH] #:re-export open-input-string, open-output-string and get-output-string, for the benefit of applications wanting to use #:select on the module. --- srfi/srfi-6.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srfi/srfi-6.scm b/srfi/srfi-6.scm index 76482ce2c..c024a3598 100644 --- a/srfi/srfi-6.scm +++ b/srfi/srfi-6.scm @@ -1,6 +1,6 @@ ;;; srfi-6.scm --- Basic String Ports -;; Copyright (C) 2001, 2002 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2002, 2003 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 @@ -22,7 +22,8 @@ ;;; Code: -(define-module (srfi srfi-6)) +(define-module (srfi srfi-6) + #:re-export (open-input-string open-output-string get-output-string)) ;; Currently, guile provides these functions by default, so no action ;; is needed, and this file is just a placeholder.