From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: eval-when-compile vs defconst Date: Tue, 14 Nov 2006 07:27:05 -0500 Message-ID: References: <58171.128.165.123.18.1163443285.squirrel@webmail.lanl.gov> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1163507318 10966 80.91.229.2 (14 Nov 2006 12:28:38 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 14 Nov 2006 12:28:38 +0000 (UTC) Cc: stephen_leake@member.fsf.org, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Nov 14 13:28:29 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GjxOi-0001Cc-VI for ged-emacs-devel@m.gmane.org; Tue, 14 Nov 2006 13:28:17 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GjxOh-0001mW-OI for ged-emacs-devel@m.gmane.org; Tue, 14 Nov 2006 07:28:15 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GjxNf-0001Cq-Vd for emacs-devel@gnu.org; Tue, 14 Nov 2006 07:27:12 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GjxNd-0001AQ-UO for emacs-devel@gnu.org; Tue, 14 Nov 2006 07:27:10 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GjxNd-0001AA-7s for emacs-devel@gnu.org; Tue, 14 Nov 2006 07:27:09 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GjxNa-0004Dm-Q6; Tue, 14 Nov 2006 07:27:06 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1GjxNZ-00045h-0l; Tue, 14 Nov 2006 07:27:05 -0500 Original-To: herring@lanl.gov In-reply-to: <58171.128.165.123.18.1163443285.squirrel@webmail.lanl.gov> (herring@lanl.gov) 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:62298 Archived-At: Surely it's there to avoid calling (and loading) `regexp-opt' at load time, and the concat is merely along for the ride? Unless the optimizer already evaluates calls to `regexp-opt' on quoted lists, it seems useful to me. Indeed, to avoid loading regexp-opt might be worth the trouble. (The time of running it isn't significant.) So if it succeeds in doing that, it is worth keeping.