From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: Newbie packagers Date: Fri, 22 Jul 2016 14:41:48 +0200 Message-ID: <87vazxrgj7.fsf@gnu.org> References: <87bn1rm1gk.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51847) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bQZmB-0000dk-Nk for help-guix@gnu.org; Fri, 22 Jul 2016 08:42:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bQZm9-0006ea-Oh for help-guix@gnu.org; Fri, 22 Jul 2016 08:41:58 -0400 In-Reply-To: (Vincent Legoll's message of "Thu, 21 Jul 2016 20:04:36 +0200") List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Vincent Legoll Cc: help-guix@gnu.org Vincent Legoll skribis: > quick ideas: > > 1 - the concept index has those: ! # ( . / maybe add ` ' , ,@ with > their aliases / long names alongside (quote, quasiquote, unquote, > unquote-splicing) Good idea. > 2 - they are well hidden in : > > The Guile Reference Manual > API Reference > Reading and Evaluating Scheme Code > Scheme Syntax: Standard and Guile Extensions > Expression Syntax > > That's far away, and the title don't help find them... > > In the mean time I did a search "guile scheme quote", and indeed the > right doc page is there (16th on duckduckgo), and google is way > better (1st place)... > > I forgot that sometimes google gives better answers than ddg... I have no control over search engines. :-) > 3 - I'd add the following to (unquote-splicing expr): > > `(1 ,x 4) =E2=87=92 (1 (2 3) 4) > > to better demonstrate the effect of splicing > > and to (unquote expr) : > > `(1 2 (* 9 9) 3 4) =E2=87=92 (1 2 (* 9 9) 3 4) I=E2=80=99d prefer to avoid duplication with the Guile manual. I pushed a variant of what I had posted as commit 654c0d97c9de4bf25b9facda1278835883555ae0. Thanks! Ludo=E2=80=99.