From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH] gnu: Add sslh. Date: Mon, 12 Sep 2016 23:14:18 +0200 Message-ID: <87d1k8yg5x.fsf@gnu.org> References: <1473640328-28092-1-git-send-email-me@tobias.gr> <20160912100334.GA24630@macbook42.flashner.co.il> <5c6e00fb-8105-27f2-a9a7-17eee6a56548@tobias.gr> 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]:54166) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bjYYc-0005zM-Ks for guix-devel@gnu.org; Mon, 12 Sep 2016 17:14:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bjYYY-0001m1-Ft for guix-devel@gnu.org; Mon, 12 Sep 2016 17:14:26 -0400 In-Reply-To: <5c6e00fb-8105-27f2-a9a7-17eee6a56548@tobias.gr> (Tobias Geerinckx-Rice's message of "Mon, 12 Sep 2016 14:33:42 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Tobias Geerinckx-Rice Cc: guix-devel@gnu.org Hi, Tobias Geerinckx-Rice skribis: > On 12/09/16 12:03, Efraim Flashner wrote: >>> + (lambda* _ >> ^^^ >> Don't need the underscore here > > I don't see how that could work. Did you mean to drop the asterisk? > If not, I'll need a bit more info. You=E2=80=99re right, Tobias. The underscore has no special meaning; it=E2=80=99s just a conventional nam= e for unused variables. You could write (lambda args =E2=80=A6) or (lambda hello= ! =E2=80=A6) and that would work equally well. =E2=80=98lambda*=E2=80=99 is a variant of =E2=80=98lambda=E2=80=99 that sup= ports keyword and optional parameter, something you definitely don=E2=80=99t need here (info "(guile) lambda* and define*"). Ludo=E2=80=99.