From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nicolas Richard Newsgroups: gmane.emacs.devel Subject: Re: [elpa] master 68bcf86 2/4: package/names: :group can be given a list Date: Mon, 12 Jan 2015 17:25:48 +0100 Message-ID: <87a91om0dv.fsf@yahoo.fr> References: <20150112112953.11913.47601@vcs.savannah.gnu.org> <871tn0yo6j.fsf@uwakimon.sk.tsukuba.ac.jp> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1421080023 11077 80.91.229.3 (12 Jan 2015 16:27:03 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 12 Jan 2015 16:27:03 +0000 (UTC) Cc: Stefan Monnier , Artur Malabarba , emacs-devel@gnu.org To: "Stephen J. Turnbull" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jan 12 17:26:55 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 1YAhpL-0007jM-On for ged-emacs-devel@m.gmane.org; Mon, 12 Jan 2015 17:26:51 +0100 Original-Received: from localhost ([::1]:35000 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YAhpL-0008WH-2m for ged-emacs-devel@m.gmane.org; Mon, 12 Jan 2015 11:26:51 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:56544) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YAhov-0008UE-KI for emacs-devel@gnu.org; Mon, 12 Jan 2015 11:26:26 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YAhor-0003OB-JM for emacs-devel@gnu.org; Mon, 12 Jan 2015 11:26:25 -0500 Original-Received: from mxin.ulb.ac.be ([164.15.128.112]:13085) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YAhor-0003Nt-Dx for emacs-devel@gnu.org; Mon, 12 Jan 2015 11:26:21 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: At0EAC71s1SkD4Xx/2dsb2JhbABbt2UBAQEBAQaYMwKBUwEBAQEBfYQNAQQBeQULCAMhJQ8BBEkTiBcBDAi7L40pAYQxAQEBBwIBH4YFgiqHSgeEKQWUCQWDPIYLi20ig289MYJDAQEB Original-Received: from mathsrv4.ulb.ac.be (HELO localhost) ([164.15.133.241]) by smtp.ulb.ac.be with ESMTP; 12 Jan 2015 17:25:47 +0100 In-Reply-To: <871tn0yo6j.fsf@uwakimon.sk.tsukuba.ac.jp> (Stephen J. Turnbull's message of "Tue, 13 Jan 2015 01:11:00 +0900") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 164.15.128.112 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:181180 Archived-At: "Stephen J. Turnbull" writes: > Stefan Monnier writes: > > > Just like we don't like '(lambda ...), we don't like '(... (lambda ...) > > ...) either (tho it's still found at many places in Emacs's source code > > since you can't "grep" for it quite as easily). Better use > > `(... ,(lambda ...) ...) instead, so the lambda is byte-compiled. > > Doesn't Emacs support #', and wouldn't that be more readable? I don't think it will help : `(... ,#'(lambda ...) ...) doesn't look more readable and #'(... (lambda ...) ...) would be wrong -- Nico