From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Panicz Maciej Godek Newsgroups: gmane.lisp.guile.user Subject: Re: Syntactic significance of dot Date: Mon, 22 Sep 2014 20:43:57 +0200 Message-ID: References: <1411409556.3458.145.camel@DebianBox.loc> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=047d7bf0cc5e5fbcb80503abd5e1 X-Trace: ger.gmane.org 1411411466 4824 80.91.229.3 (22 Sep 2014 18:44:26 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 22 Sep 2014 18:44:26 +0000 (UTC) Cc: "guile-user@gnu.org" To: richard@rshann.plus.com Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Mon Sep 22 20:44:20 2014 Return-path: Envelope-to: guile-user@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 1XW8as-0002gu-01 for guile-user@m.gmane.org; Mon, 22 Sep 2014 20:44:14 +0200 Original-Received: from localhost ([::1]:48326 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XW8ar-0008MJ-Fc for guile-user@m.gmane.org; Mon, 22 Sep 2014 14:44:13 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:35872) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XW8ai-0008KA-Dm for guile-user@gnu.org; Mon, 22 Sep 2014 14:44:05 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XW8ah-0003wS-MU for guile-user@gnu.org; Mon, 22 Sep 2014 14:44:04 -0400 Original-Received: from mail-we0-x22a.google.com ([2a00:1450:400c:c03::22a]:52743) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XW8ah-0003w0-GJ for guile-user@gnu.org; Mon, 22 Sep 2014 14:44:03 -0400 Original-Received: by mail-we0-f170.google.com with SMTP id x48so1980864wes.1 for ; Mon, 22 Sep 2014 11:43:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=+ZqwqpjqG/iCQ8W/ZmlfZGhWWa0y5MlZpFtineVZL9I=; b=zQQt+0xKvKGz8DKsltZ8OnfE+i7cDCqnokvQqZx3sTPmXjEcWuK9rWAcUoIsfgGiQi RfzASGrvw3KvYrvssPuO9Wr9t9C5MyQep5y2dF8uDfvl2laTvVSMOe8UmGkl8ETMnV5d LMSQGSYZFaxzoqQzvpoPyWg2+eof0yhlqTROSZy2DH4FPzKfAYT/6S6kLWZeI2zLLx++ 1PnBiYElJ+lfXncNfPFc2mTbtilfO9Tl7tTpZG56SdpMKbwDk/hctX6qnsancaCFLK4X oiIAamha3YPhB9YKWziO6fRuLwM0qIKLm7Vr7OGo1bfHkxbkmV0LnlXOn7NVrOI7myr+ cQng== X-Received: by 10.194.80.2 with SMTP id n2mr22804242wjx.29.1411411437662; Mon, 22 Sep 2014 11:43:57 -0700 (PDT) Original-Received: by 10.194.188.36 with HTTP; Mon, 22 Sep 2014 11:43:57 -0700 (PDT) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c03::22a X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:11545 Archived-At: --047d7bf0cc5e5fbcb80503abd5e1 Content-Type: text/plain; charset=UTF-8 A little more errata :) [sorry for the confusion] > This behaviour is coherent in the context of quasiquote: > (let ((a 1) (b 2) (c 3)) > `(,a ,b . ,c)) > yields > (1 2 3) > Should be: yields (1 2 . 3) --047d7bf0cc5e5fbcb80503abd5e1 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
A little more errata :)
[sorry for the confusion]
<= div>

This behaviour is coherent in the context= of quasiquote:
(let ((a 1) (b 2) (c 3))
=C2=A0 `(,a ,b= . ,c))
yields
(1 2 3)

Should be:

yields
(1 2 . 3)=C2=A0

--047d7bf0cc5e5fbcb80503abd5e1--