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: Re: When is 1.8 going to be released Date: Thu, 28 Aug 2003 09:53:06 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <873cfmody5.fsf@zip.com.au> References: <16156.19438.587414.84607@localhost.localdomain> <87n0f6ohar.fsf@zagadka.ping.de> <16159.55969.896460.534700@localhost.localdomain> <87oeygjn5b.fsf@raven.i.defaultvalue.org> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1062031777 30992 80.91.224.253 (28 Aug 2003 00:49:37 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 28 Aug 2003 00:49:37 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Aug 28 02:49:35 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19sAyl-0005UP-00 for ; Thu, 28 Aug 2003 02:49:35 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.22) id 19sArx-0004bi-GR for guile-devel@m.gmane.org; Wed, 27 Aug 2003 20:42:33 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.22) id 19sABY-0003vV-9K for guile-devel@gnu.org; Wed, 27 Aug 2003 19:58:44 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.22) id 19sA9t-00036A-9L for guile-devel@gnu.org; Wed, 27 Aug 2003 19:57:02 -0400 Original-Received: from [61.8.0.36] (helo=snoopy.pacific.net.au) by monty-python.gnu.org with esmtp (Exim 4.22) id 19sA6N-0001Xh-Ep for guile-devel@gnu.org; Wed, 27 Aug 2003 19:53:23 -0400 Original-Received: from sunny.pacific.net.au (sunny.pacific.net.au [203.2.228.40]) by snoopy.pacific.net.au (8.12.3/8.12.3/Debian-6.4) with ESMTP id h7RNrK0J006239 for ; Thu, 28 Aug 2003 09:53:20 +1000 Original-Received: from wisma.pacific.net.au (wisma.pacific.net.au [210.23.129.72]) by sunny.pacific.net.au with ESMTP id h7RNrKkv021890 for ; Thu, 28 Aug 2003 09:53:20 +1000 (EST) Original-Received: from localhost (ppp99.dyn228.pacific.net.au [203.143.228.99]) by wisma.pacific.net.au (8.12.9/8.12.9) with ESMTP id h7RNrGvj007249 for ; Thu, 28 Aug 2003 09:53:18 +1000 (EST) Original-Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 19sA67-0000dG-00; Thu, 28 Aug 2003 09:53:07 +1000 Original-To: guile-devel@gnu.org Mail-Copies-To: never In-Reply-To: <87oeygjn5b.fsf@raven.i.defaultvalue.org> (Rob Browning's message of "Sat, 23 Aug 2003 12:32:00 -0500") User-Agent: Gnus/5.090019 (Oort Gnus v0.19) Emacs/21.3 (gnu/linux) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.2 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:2725 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2725 Rob Browning writes: > > I'd like to consider making a 1.6.5 release in the not too distant > future, so everyone should start thinking about what (bugfix-wise) > might not already be in CVS. In other messages, - scm_done_malloc on negative operands - srfi-1 list-copy on improper lists. I was going to go ahead with a list-copy fix, but then 1.6 doesn't have an srfi-1.c module as such so I wasn't sure if I was keen enough to either introduce one or do it in scheme. Maybe (tested a bit), (define (list-copy lst) (let ((ret (cons #f lst))) (do ((lst lst (cdr lst)) (end ret (cdr end))) ((not (pair? lst)) (cdr ret)) (set-cdr! end (cons (car lst) (cdr lst)))))) _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel