From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: "simplifications" Date: Mon, 19 Nov 2007 16:47:58 +0100 Message-ID: References: <86ejem1pig.fsf@lola.quinscape.zz> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1195487383 18481 80.91.229.12 (19 Nov 2007 15:49:43 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 19 Nov 2007 15:49:43 +0000 (UTC) Cc: emacs-devel@gnu.org To: "Stefan Monnier" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Nov 19 16:49:49 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Iu8se-0004eo-Gt for ged-emacs-devel@m.gmane.org; Mon, 19 Nov 2007 16:49:48 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Iu8sQ-0003xk-Ed for ged-emacs-devel@m.gmane.org; Mon, 19 Nov 2007 10:49:34 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Iu8qw-0001vS-BB for emacs-devel@gnu.org; Mon, 19 Nov 2007 10:48:02 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Iu8qu-0001tS-Jr for emacs-devel@gnu.org; Mon, 19 Nov 2007 10:48:01 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Iu8qu-0001tB-GF for emacs-devel@gnu.org; Mon, 19 Nov 2007 10:48:00 -0500 Original-Received: from wr-out-0506.google.com ([64.233.184.231]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Iu8qt-0000aT-RX for emacs-devel@gnu.org; Mon, 19 Nov 2007 10:48:00 -0500 Original-Received: by wr-out-0506.google.com with SMTP id 37so683174wra for ; Mon, 19 Nov 2007 07:47:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=hCoYk15lEeL412fRxLC1LoQZ2pDqx8srUsgMFKYLBBc=; b=lR397pTCbOQ3ouVaPdNuVzdpljLoKZ8M2CaUPPthZQRKSC8T5h9LYrUd/4BrNXm7A5/E/HsDF4/U0Th5jMyERvA/Z/L9co9gOSc/na12+CSuoZ+FtnP1HTgYDzBNqgNlydEJA7b+4ZPLjQ5LXkxdg6vh/2TyglTJv076R+Jly5U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=YjI8fjeM099tI/cZYafkVQISX5hZf2vd7wENxlLg7ZCkdD+b5T2NEPbJE7I2LjzuEIUtaMmCBzkk8NNdmtdPP+WHiS/+PlrCqZaZxWomskNG9goU2k6xqI68A8zTNBCv7Jyb0LKwajtYSVUWGDd4jhG8hZC6cCRnE/aPI4KFaLY= Original-Received: by 10.114.79.1 with SMTP id c1mr1092466wab.1195487278472; Mon, 19 Nov 2007 07:47:58 -0800 (PST) Original-Received: by 10.114.168.11 with HTTP; Mon, 19 Nov 2007 07:47:58 -0800 (PST) In-Reply-To: Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.4-2.6 (Google crawlbot) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:83659 Archived-At: On Nov 19, 2007 4:44 PM, Stefan Monnier wrote: > Well, my optimization is not specific to defsubst, so it will also > remove the let-binding in: > > (let ((debug-on-error t)) > (car (car (cdr x)))) Why? There can be no dynamic bindings under that optimization? > In any case, if you want a "fast and loose" defsubst, it's there already > under the name defsubst*. I'll remember it. Thanks again. Juanma