From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Daniel Hartwig Newsgroups: gmane.lisp.guile.devel Subject: Re: Record type printers for SRFI 45 promises and SRFI 41 streams Date: Mon, 8 Apr 2013 07:19:04 +0800 Message-ID: References: <20130407164935.GA22923@lotus.destinee.acro.gen.nz> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1365445673 4218 80.91.229.3 (8 Apr 2013 18:27:53 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 8 Apr 2013 18:27:53 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon Apr 08 20:27:56 2013 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 1UPGnL-0000pw-DY for guile-devel@m.gmane.org; Mon, 08 Apr 2013 20:27:55 +0200 Original-Received: from localhost ([::1]:43377 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UOyrg-0003mx-7l for guile-devel@m.gmane.org; Sun, 07 Apr 2013 19:19:12 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:51545) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UOyrb-0003mp-4S for guile-devel@gnu.org; Sun, 07 Apr 2013 19:19:08 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UOyrZ-0004P9-64 for guile-devel@gnu.org; Sun, 07 Apr 2013 19:19:07 -0400 Original-Received: from mail-ie0-x22f.google.com ([2607:f8b0:4001:c03::22f]:45947) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UOyrZ-0004P2-14 for guile-devel@gnu.org; Sun, 07 Apr 2013 19:19:05 -0400 Original-Received: by mail-ie0-f175.google.com with SMTP id c12so6074892ieb.6 for ; Sun, 07 Apr 2013 16:19:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=KNfxzFyYJPamLZnRwvmGT8HLWVxEy/szy/4Ii+SDRlU=; b=kqqeiIpusmF2DAuaXoPBZY1CgFPsFDSjv5VFoZaBKd4Xf804SMLFllfoPaUyDvoMLq FuL8tfwhhpaa1u0APkCwd7S1m1dvMHMk0xmrryZuRfjBNd1zTwYcRo19IIINB3Ly3uGA pfsbAkjXEonvHxqS2fXfRdUFGiFtQKG0tyvSS/0hSXnwnpwBiEX4klgQljU+BSi7dXNE VmjgB9lUnm2a3MZT0+4rb7tpX0rsjaaBGLVOGGMu73+nEcpO8aolXRyNx3YjdrCM0qfq zzr205H9uEXsWLhSoonyltzOJ7gwBMqAjcdwAZ9xOAzf8oc6OQ8UKz2Yud4Ciq8y9fcE Qh+Q== X-Received: by 10.50.135.105 with SMTP id pr9mr5257302igb.6.1365376744579; Sun, 07 Apr 2013 16:19:04 -0700 (PDT) Original-Received: by 10.64.26.168 with HTTP; Sun, 7 Apr 2013 16:19:04 -0700 (PDT) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4001:c03::22f 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:16196 Archived-At: On 8 April 2013 07:13, Daniel Hartwig wrote: > On 8 April 2013 00:49, Chris K. Jester-Young wrote: >> Hi all, >> >> I've attached record type printers for SRFI 45 promises and SRFI 41 >> streams. I've tried to make promise-visit more self-documenting with >> the use of keyword arguments; let me know if you think that's an >> improvement! >> >> Also as discussed with Mark H Weaver, I've currently implemented the >> format for promises as # ...> for unevaluated promises, and >> # for evaluated ones. Hopefully this is is easy to read >> and will clearly distinguish between the two types, and still look >> different from core promises too. To distinguish from core promises a more explicit tag is preferable, like srfi-69 uses: # Regards