From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Artur Malabarba Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] Clojure-like syntactic sugar for an anonymous function literal Date: Wed, 21 Jan 2015 22:57:50 -0200 Message-ID: References: <765b55dfa6d6df976352fc7c50b15c6f@samertm.com> Reply-To: bruce.connor.am@gmail.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1421888288 4879 80.91.229.3 (22 Jan 2015 00:58:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 22 Jan 2015 00:58:08 +0000 (UTC) Cc: emacs-devel To: Oleh Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jan 22 01:58:07 2015 Return-path: Envelope-to: ged-emacs-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 1YE662-0001W6-U9 for ged-emacs-devel@m.gmane.org; Thu, 22 Jan 2015 01:58:07 +0100 Original-Received: from localhost ([::1]:50735 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YE662-0001jW-B1 for ged-emacs-devel@m.gmane.org; Wed, 21 Jan 2015 19:58:06 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:40894) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YE65o-0001jR-Fg for emacs-devel@gnu.org; Wed, 21 Jan 2015 19:57:53 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YE65n-0006k3-Lo for emacs-devel@gnu.org; Wed, 21 Jan 2015 19:57:52 -0500 Original-Received: from mail-oi0-x232.google.com ([2607:f8b0:4003:c06::232]:38996) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YE65n-0006jN-Fe for emacs-devel@gnu.org; Wed, 21 Jan 2015 19:57:51 -0500 Original-Received: by mail-oi0-f50.google.com with SMTP id h136so6836386oig.9 for ; Wed, 21 Jan 2015 16:57:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:sender:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:content-transfer-encoding; bh=015+qcm4Up2AWX80ApD6eoN6ZarCWLzGOgnj1oesSPs=; b=WoTIODqAqQLMfQNVo88TKhdJoZO1dZsXwRb29rb9yBkoDJe0pnsnIbLdTmHzI1bt7l u8AEgvjArEjl/lChQOocTQzX5wwxYpNhrN7lplP22xoktYC+Y30JoY/GUZHdUuws2WFA uuhywEUgwr4eFD5NVMdz/c8sY6wYLePd/i/IGYbdn9Cpw1ZR/QduyFNTgPEKbFADftkZ j1ZdsLMq3qIcZWIpU8rspTr6NCa2uXXAOCexT1xoLMkwaa9u220hr2HpiKO6BcCUvN5u x5v3eyvJZEL9nuEQTVZHEPEq8Ro0226jKDyKztrMJPJgc0hPNpGk+Znw1a1fS5uPa2mD oVNA== X-Received: by 10.182.243.195 with SMTP id xa3mr26829708obc.29.1421888270829; Wed, 21 Jan 2015 16:57:50 -0800 (PST) Original-Received: by 10.76.125.1 with HTTP; Wed, 21 Jan 2015 16:57:50 -0800 (PST) In-Reply-To: X-Google-Sender-Auth: CJabzO_Qzxbjx-I4NcOOF-kdgjk X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4003:c06::232 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:181543 Archived-At: On second thought. Because it's a reader macro, it would have to be subr, since subr-x isn't necessarily loaded. 2015-01-21 22:54 GMT-02:00 Artur Malabarba : >> Also, I wouldn't know exactly where to put the Elisp >> part, that's why it's still on github. > > I'd say subr.el, as that's where lambda is defined. Since the macro > isn't =E2=80=9Ccommonly used=E2=80=9D yet, some might prefer for it to go= into > subr-x.el.