From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from black.elm.relay.mailchannels.net (black.elm.relay.mailchannels.net [23.83.212.19]) by sourceware.org (Postfix) with ESMTPS id E86933857023 for ; Thu, 4 Feb 2021 21:35:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org E86933857023 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=eip10.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=chaw@eip10.org X-Sender-Id: dreamhost|x-authsender|chaw@eip10.org Received: from relay.mailchannels.net (localhost [127.0.0.1]) by relay.mailchannels.net (Postfix) with ESMTP id 9E1D27E33BE for ; Thu, 4 Feb 2021 21:35:01 +0000 (UTC) Received: from pdx1-sub0-mail-a16.g.dreamhost.com (100-96-16-7.trex.outbound.svc.cluster.local [100.96.16.7]) (Authenticated sender: dreamhost) by relay.mailchannels.net (Postfix) with ESMTPA id 295947E31E8 for ; Thu, 4 Feb 2021 21:35:01 +0000 (UTC) X-Sender-Id: dreamhost|x-authsender|chaw@eip10.org Received: from pdx1-sub0-mail-a16.g.dreamhost.com (pop.dreamhost.com [64.90.62.162]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384) by 100.96.16.7 (trex/6.0.2); Thu, 04 Feb 2021 21:35:01 +0000 X-MC-Relay: Neutral X-MailChannels-SenderId: dreamhost|x-authsender|chaw@eip10.org X-MailChannels-Auth-Id: dreamhost X-Scare-Stop: 3a787937578e9ef5_1612474501405_3837658602 X-MC-Loop-Signature: 1612474501404:1123769349 X-MC-Ingress-Time: 1612474501404 Received: from pdx1-sub0-mail-a16.g.dreamhost.com (localhost [127.0.0.1]) by pdx1-sub0-mail-a16.g.dreamhost.com (Postfix) with ESMTP id CDD3C8A7A2 for ; Thu, 4 Feb 2021 13:35:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=eip10.org; h=to:subject :from:reply-to:mime-version:content-type:content-id:date :message-id; s=eip10.org; bh=F2aXJJrS/Um0z4E9TRbPysRfqNk=; b=Rg6 tv+GjxYsbnItsQ6EGJAHuOZK3U6NUP9Q40sTJGcurnQGOK+9IvXwrDi5rJbG0dcQ qTZqDSz7dJJEY610SUIOyCg97obrmnuyhTeweWNEZGXl/1YtPP92ore5CXR3XXQD ldSh1KFdKkskY4ggsODyN9d0k4p+NDebcBFp69zQ= Received: from vpaur.eip10.org (cpe-74-75-233-46.maine.res.rr.com [74.75.233.46]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: chaw@eip10.org) by pdx1-sub0-mail-a16.g.dreamhost.com (Postfix) with ESMTPSA id A7A877E595 for ; Thu, 4 Feb 2021 13:35:00 -0800 (PST) Received: from chaw by vpaur.eip10.org with local (Exim 4.89) (envelope-from ) id 1l7mHC-0004G0-UP for kawa@sourceware.org; Thu, 04 Feb 2021 16:34:58 -0500 To: Kawa mailing list Subject: Q about format's behavior with ~R directive X-DH-BACKEND: pdx1-sub0-mail-a16 From: "Sudarshan S Chawathe" Reply-To: "Sudarshan S Chawathe" X-Mailer: MH-E 8.5; nmh 1.6; GNU Emacs 24.5.1 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <16366.1612474498.1@localhost> Date: Thu, 04 Feb 2021 16:34:58 -0500 Message-ID: <16367.1612474498@localhost> X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: kawa@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Kawa mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2021 21:35:04 -0000 With the code (format #t "~R~%" 100) I get hundred but with the Common Lisp equivalent (I think) (format t "~R~%" 100) in SBCL I get instead one hundred I am unsure of how tightly specified any of this is, but to me the SBCL output makes more sense. Is this expected, allowed, by design, a bug, or something else? A related question: Is it correct that Kawa uses SLIB's test file for format (formatst.scm in testsuite) but not SLIB's implementation of format? Regards, -chaw