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: cond-expand srfi-6 string ports Date: Mon, 05 Jul 2004 09:47:30 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <87fz87qqr1.fsf@zip.com.au> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: sea.gmane.org 1088984886 23037 80.91.224.253 (4 Jul 2004 23:48:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 4 Jul 2004 23:48:06 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon Jul 05 01:47:56 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BhGiB-0008Fd-00 for ; Mon, 05 Jul 2004 01:47:55 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BhGk8-0001rC-04 for guile-devel@m.gmane.org; Sun, 04 Jul 2004 19:49:56 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1BhGjz-0001oU-OO for guile-devel@gnu.org; Sun, 04 Jul 2004 19:49:47 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1BhGjz-0001o8-86 for guile-devel@gnu.org; Sun, 04 Jul 2004 19:49:47 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BhGjz-0001nz-6C for guile-devel@gnu.org; Sun, 04 Jul 2004 19:49:47 -0400 Original-Received: from [61.8.0.84] (helo=mailout1.pacific.net.au) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BhGhv-00074f-HI for guile-devel@gnu.org; Sun, 04 Jul 2004 19:47:40 -0400 Original-Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.0.87]) by mailout1.pacific.net.au (8.12.3/8.12.3/Debian-6.6) with ESMTP id i64Nlb4u001024 for ; Mon, 5 Jul 2004 09:47:37 +1000 Original-Received: from localhost (ppp2B88.dyn.pacific.net.au [61.8.43.136]) by mailproxy2.pacific.net.au (8.12.3/8.12.3/Debian-6.6) with ESMTP id i64NlZnk016827 for ; Mon, 5 Jul 2004 09:47:36 +1000 Original-Received: from gg by localhost with local (Exim 3.36 #1 (Debian)) id 1BhGhm-0000gM-00; Mon, 05 Jul 2004 09:47:30 +1000 Original-To: guile-devel@gnu.org Mail-Copies-To: never User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3 (gnu/linux) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.devel:3827 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:3827 --=-=-= Since srfi-6 string ports are builtin to guile, should srfi-6 be always true in cond-expand? Ie. true before doing any use-module? I don't suppose it makes much difference, but if the feature is available it may as well be indicated. * boot-9.scm (%cond-expand-features): Add srfi-6 which is in the core. (This could be for the 1.6 branch too.) --=-=-= Content-Disposition: inline; filename=boot-9.scm.cond-expand.diff --- boot-9.scm.~1.332.~ 2004-06-17 08:08:25.000000000 +1000 +++ boot-9.scm 2004-07-05 09:47:14.000000000 +1000 @@ -3183,14 +3183,18 @@ ;;; ;;; Currently, the following feature identifiers are supported: ;;; -;;; guile r5rs srfi-0 +;;; guile r5rs srfi-0 srfi-6 ;;; ;;; Remember to update the features list when adding more SRFIs. ;;; (define %cond-expand-features ;; Adjust the above comment when changing this. - '(guile r5rs srfi-0)) + '(guile + r5rs + srfi-0 ;; cond-expand itself + srfi-6 ;; open-input-string etc, in the guile core + )) ;; This table maps module public interfaces to the list of features. ;; --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://lists.gnu.org/mailman/listinfo/guile-devel --=-=-=--