From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Neil Jerram Newsgroups: gmane.lisp.guile.devel Subject: Re: (class-of #u32(1 2 3 4)) Date: Sat, 30 Oct 2010 11:15:13 +0100 Message-ID: <87hbg4q95a.fsf@ossau.uklinux.net> References: <2e6d10881001120039h206f7564ja859d558007c6@mail.gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1288433764 21619 80.91.229.12 (30 Oct 2010 10:16:04 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 30 Oct 2010 10:16:04 +0000 (UTC) Cc: guile-devel@gnu.org To: Tristan Colgate Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sat Oct 30 12:16:01 2010 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PC8Tf-0005YP-TD for guile-devel@m.gmane.org; Sat, 30 Oct 2010 12:16:00 +0200 Original-Received: from localhost ([127.0.0.1]:41631 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PC8Te-0002uz-GL for guile-devel@m.gmane.org; Sat, 30 Oct 2010 06:15:58 -0400 Original-Received: from [140.186.70.92] (port=57563 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PC8Ta-0002ul-8V for guile-devel@gnu.org; Sat, 30 Oct 2010 06:15:55 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PC8TY-0002Ve-Gl for guile-devel@gnu.org; Sat, 30 Oct 2010 06:15:54 -0400 Original-Received: from mail3.uklinux.net ([80.84.72.33]:53018) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PC8TY-0002PJ-7p for guile-devel@gnu.org; Sat, 30 Oct 2010 06:15:52 -0400 Original-Received: from arudy (unknown [78.149.124.242]) by mail3.uklinux.net (Postfix) with ESMTP id DA1201F69B6; Sat, 30 Oct 2010 11:15:14 +0100 (BST) Original-Received: from neil-laptop (unknown [192.168.1.5]) by arudy (Postfix) with ESMTP id AB1AD38013; Sat, 30 Oct 2010 11:15:47 +0100 (BST) In-Reply-To: <2e6d10881001120039h206f7564ja859d558007c6@mail.gmail.com> (Tristan Colgate's message of "Tue, 12 Jan 2010 08:39:44 +0000") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 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: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:11087 Archived-At: Tristan Colgate writes: > Hi all, > > I mentioned this on IRC but thought I'd pop a message in here to incase. > > git master is return for (class-of #u32(1 2 3 4)) rather than > the previous . Apparently this is related to > "reimplement srfi-4 vectors on top of bytevectors" > > Cheers, According to my old email, I don't think there was any followup to this, so I just checked if it's fixed by now: scheme@(guile-user)> (use-modules (oop goops)) scheme@(guile-user)> (class-of #u32(1 2 3 4)) $1 = #< 9cd8870> :-) Neil