From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kevin Ryde Newsgroups: gmane.lisp.guile.devel Subject: srfi-6 re-exports (was: frisk versus srfi-1 filter) Date: Tue, 03 Jun 2003 09:53:29 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <87fzmsf346.fsf@zip.com.au> References: <873cldog5i.fsf@zip.com.au> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1054599858 28795 80.91.224.249 (3 Jun 2003 00:24:18 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 3 Jun 2003 00:24:18 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Tue Jun 03 02:24:17 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19Mzb6-0007UI-00 for ; Tue, 03 Jun 2003 02:24:16 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19Mzbr-0006mj-Ou for guile-devel@m.gmane.org; Mon, 02 Jun 2003 20:25:03 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19MzaV-0006XV-Cp for guile-devel@gnu.org; Mon, 02 Jun 2003 20:23:39 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19MzZf-0006H3-Vn for guile-devel@gnu.org; Mon, 02 Jun 2003 20:22:48 -0400 Original-Received: from snoopy.pacific.net.au ([61.8.0.36]) by monty-python.gnu.org with esmtp (Exim 4.20) id 19MzAS-0001oN-3E for guile-devel@gnu.org; Mon, 02 Jun 2003 19:56:44 -0400 Original-Received: from sunny.pacific.net.au (sunny.pacific.net.au [203.2.228.40]) h52NrsPB025680 for ; Tue, 3 Jun 2003 09:55:30 +1000 Original-Received: from wisma.pacific.net.au (wisma.pacific.net.au [210.23.129.72]) by sunny.pacific.net.au with ESMTP id h52NrnQg011441 for ; Tue, 3 Jun 2003 09:53:49 +1000 (EST) Original-Received: from localhost (ppp92.dyn228.pacific.net.au [203.143.228.92]) by wisma.pacific.net.au (8.12.9/8.12.9) with ESMTP id h52NrjYZ001374 for ; Tue, 3 Jun 2003 09:53:47 +1000 (EST) Original-Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 19Mz7J-0002PY-00; Tue, 03 Jun 2003 09:53:29 +1000 Original-To: guile-devel@gnu.org Mail-Copies-To: never User-Agent: Gnus/5.090019 (Oort Gnus v0.19) Emacs/21.2 (gnu/linux) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Developers list for Guile, the GNU extensibility library List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.devel:2481 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2481 --=-=-= Mikael Djurfeldt writes: > > The "frisk" script correctly uses :select to explicitly ask for the > binding "filter" in srfi-1. Of course people should be able to do > this for *all* bindings of srfi-1, which means that we must re-export > all core bindings. Is this a general rule? For instance I wonder if srfi-6 string ports should re-export similarly. (Below, untested.) Of course being entirely in the core I don't suppose it's ever occurred to anyone to use a module at all :-). --=-=-= Content-Disposition: attachment; filename=srfi-6.scm.re-export.diff --- srfi-6.scm.~1.5.~ 2003-04-07 08:05:30.000000000 +1000 +++ srfi-6.scm 2003-05-25 08:36:58.000000000 +1000 @@ -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. --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel --=-=-=--