From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Marius Vollmer Newsgroups: gmane.lisp.guile.bugs,gmane.lisp.guile.devel,gmane.lisp.guile.user Subject: Re: Strange behaviour of array? Date: 17 Nov 2002 16:29:35 +0100 Sender: bug-guile-admin@gnu.org Message-ID: <87smy0nrj4.fsf@zagadka.ping.de> References: <20021105115705.GA6539@www> <20021115021213.B12469@kiwi.pyrotechnics.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1037547674 26786 80.91.224.249 (17 Nov 2002 15:41:14 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 17 Nov 2002 15:41:14 +0000 (UTC) Cc: tomas@fabula.de, guile-devel@gnu.org, guile-user@gnu.org, bug-guile@gnu.org 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 18DRXt-0006xt-00 for ; Sun, 17 Nov 2002 16:41:13 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 18DRZN-0002RO-00; Sun, 17 Nov 2002 10:42:45 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 18DRMg-0001Lg-00 for bug-guile@gnu.org; Sun, 17 Nov 2002 10:29:38 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 18DRMd-0001Ka-00 for bug-guile@gnu.org; Sun, 17 Nov 2002 10:29:37 -0500 Original-Received: from mail.dokom.net ([195.253.8.218]) by monty-python.gnu.org with esmtp (Exim 4.10) id 18DRMc-0001KM-00 for bug-guile@gnu.org; Sun, 17 Nov 2002 10:29:34 -0500 Original-Received: from dialin.speedway43.dip182.dokom.de ([195.138.43.182] helo=zagadka.ping.de ident=qmailr) by mail.dokom.net with smtp (Exim 3.32 #2) id 18DRNc-0006bX-00 for bug-guile@gnu.org; Sun, 17 Nov 2002 16:30:36 +0100 Original-Received: (qmail 25564 invoked by uid 1000); 17 Nov 2002 15:29:35 -0000 Original-To: Christopher Cramer In-Reply-To: <20021115021213.B12469@kiwi.pyrotechnics.com> Original-Lines: 36 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Errors-To: bug-guile-admin@gnu.org X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Bug reports for GUILE, GNU's Ubiquitous Extension Language List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.lisp.guile.bugs:573 gmane.lisp.guile.devel:1722 gmane.lisp.guile.user:1365 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:1722 Christopher Cramer writes: > I distinctly remember sending a patch to fix this to either bug-guile or > guile-devel a loooong time ago, but I can't find it in the archives. I'm > surprised it's not fixed in 1.6.0, but maybe it's because I never sent > the patch in... I'm hesitant to just apply this patch. The 'array' stuff in Guile is quite obscure, in my view, and fixing it piecewise does not seem to be a good idea, given its (appearant) brittleness. For example, with your patch, guile> (array? "foo") #f but guile> (array-ref "foo" 0) #\f which is inconsistent. On the other hand, we have now guile> (array? 'foo) #t but guile> (array-ref 'foo 0) Wrong type argument in position 1: foo which is also inconsistent. The whole array stuff needs to be looked over, with SRFI-4 in mind. -- GPG: D5D4E405 - 2F9B BCCC 8527 692A 04E3 331E FAF8 226A D5D4 E405 _______________________________________________ Bug-guile mailing list Bug-guile@gnu.org http://mail.gnu.org/mailman/listinfo/bug-guile