From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?ISO-8859-1?Q?Sjoerd_van_Leent_Priv=E9?= Newsgroups: gmane.lisp.guile.devel Subject: Immutable rnrs hashtable Date: Mon, 26 Nov 2012 00:00:43 +0100 Message-ID: <50B2A31B.1070903@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1353884458 5222 80.91.229.3 (25 Nov 2012 23:00:58 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 25 Nov 2012 23:00:58 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon Nov 26 00:01:08 2012 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TclCB-0001gw-08 for guile-devel@m.gmane.org; Mon, 26 Nov 2012 00:01:03 +0100 Original-Received: from localhost ([::1]:58498 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TclC0-0005eV-37 for guile-devel@m.gmane.org; Sun, 25 Nov 2012 18:00:52 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:34146) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TclBx-0005eQ-5I for guile-devel@gnu.org; Sun, 25 Nov 2012 18:00:50 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TclBw-0008BO-0e for guile-devel@gnu.org; Sun, 25 Nov 2012 18:00:49 -0500 Original-Received: from mail-wi0-f177.google.com ([209.85.212.177]:56639) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TclBv-0008BA-Pa for guile-devel@gnu.org; Sun, 25 Nov 2012 18:00:47 -0500 Original-Received: by mail-wi0-f177.google.com with SMTP id c10so2062545wiw.12 for ; Sun, 25 Nov 2012 15:00:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=JF6kmRAxFrIru5JuHLltnK40WgHPJANHREMDLvF5rwY=; b=TsyGA+3+tnD/zluRsa8F37OoR9vrxZdLsMRoWxBELjT9sQlbnojeycDQYKnQ07RuOE kuBMJJVmbSaf8QDtwSYP2XtFaW9ypKfJ1y+mnQhNv2brrDS9GHfQyjxNvhA39bnOIQIS uVfAyz7iznN7S+7H6fuWY07NajgXSFnYkQ9/dp7Krosmsekm54/RmiC4TjFthcn9nSX8 OG5CCalBVvZC6kpYGYcBVCeo3p34zhW21Uk2ZoEsiCpNhDvDyizKbACREe5Ho10vZKSj oPn2tQqypCiRqE6NeE3CTmfJ1YoeQiOcRwbV8HoHjp2WNpPV26+zLHlrnAJirIFjVWuF JgaQ== Original-Received: by 10.216.218.88 with SMTP id j66mr3544902wep.187.1353884446286; Sun, 25 Nov 2012 15:00:46 -0800 (PST) Original-Received: from [192.168.1.46] (195-240-166-168.ip.telfort.nl. [195.240.166.168]) by mx.google.com with ESMTPS id y3sm18754005wix.6.2012.11.25.15.00.44 (version=SSLv3 cipher=OTHER); Sun, 25 Nov 2012 15:00:45 -0800 (PST) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20121028 Thunderbird/16.0.2 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 209.85.212.177 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 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 Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:15252 Archived-At: Hi all, I might have found an issue using commit 06906f370f77cbab520ff0d3c47449526934a9c8 (stable-2.0). I am attempting to do a hashtable-copy using rnrs hashtables, and set the mutable flag to #:t (according to documentation this should make it immutable, a bit odd). I attempted #:f as well. It appears the output hashtable is still mutable. Can someone check this? Regards, Sjoerd