From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Oleh Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] Clojure-like syntactic sugar for an anonymous function literal Date: Thu, 22 Jan 2015 10:19:25 +0100 Message-ID: References: <54C05269.7050602@dancol.org> <87a91buvqj.fsf@uwakimon.sk.tsukuba.ac.jp> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1421918387 28443 80.91.229.3 (22 Jan 2015 09:19:47 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 22 Jan 2015 09:19:47 +0000 (UTC) Cc: "Stephen J. Turnbull" , Daniel Colascione , emacs-devel@gnu.org To: Andreas Schwab Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jan 22 10:19:47 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 1YEDvW-0002nZ-EA for ged-emacs-devel@m.gmane.org; Thu, 22 Jan 2015 10:19:46 +0100 Original-Received: from localhost ([::1]:51947 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YEDvQ-0003Cj-Og for ged-emacs-devel@m.gmane.org; Thu, 22 Jan 2015 04:19:40 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:37213) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YEDvD-0003Ca-P1 for emacs-devel@gnu.org; Thu, 22 Jan 2015 04:19:28 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YEDvC-0005kP-Lq for emacs-devel@gnu.org; Thu, 22 Jan 2015 04:19:27 -0500 Original-Received: from mail-we0-x22c.google.com ([2a00:1450:400c:c03::22c]:65126) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YEDvC-0005k1-EO for emacs-devel@gnu.org; Thu, 22 Jan 2015 04:19:26 -0500 Original-Received: by mail-we0-f172.google.com with SMTP id k11so545631wes.3 for ; Thu, 22 Jan 2015 01:19:25 -0800 (PST) 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=CKAr//TUh9XbJbBqNEjkFbsgMvbtqYn+4w3jwzxtx4k=; b=Gkxz/QyMlg1mv2Vh0dRFwv+IjLMXfUpQcyOKZYSE1nxTTBY3gujiOe2rDN7KYFymM0 xSifc4eCvha9tC2/JVcYQyg8Ua2IrS3k4ddYNgfLBdxcMVYPAet8HzNbUJr7TgW2zoeH vMv2z7p8AoPwlEiQ8obiIlMS4ORL9+zgcghCO60i6pnEnP77wkjnEvutuGqUv2MtC54y cjdmbsy4JAwn3bx76aGYgfaNCrS2d0L5N69lrOODPIXdIrQu9xd4kYuYeBirG05rzm+Q yOV5SClaDofaJhdprMhH1Da4TVRBiir/ZpFRc7IhVueosyiaId2lfX2Oug/rHNXJZmXp 0aEw== X-Received: by 10.180.21.225 with SMTP id y1mr64256055wie.42.1421918365690; Thu, 22 Jan 2015 01:19:25 -0800 (PST) Original-Received: by 10.27.137.137 with HTTP; Thu, 22 Jan 2015 01:19:25 -0800 (PST) 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::22c 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:181564 Archived-At: Hi Andreas, >> Note that it only takes the "#([^\"]" spot. The "#c" convention is >> completely untouched, unless "c" is "(". > > IMHO this is too close to the syntax for propertized strings. This can also be seen as an advantage, this already is part of Emacs (read "#(\"foo\")") All I'm doing is saying: if the first char of the string syntax isn't ", make it a reader syntax for `short-lambda'. Thus this reader syntax doesn't really tread other reader syntaxes.