From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] master c75eb10: Don't change byte-compile-delete-errors at runtime (Bug#27340) Date: Thu, 29 Jun 2017 07:46:43 -0400 Message-ID: References: <20170624141528.514.4459@vcs0.savannah.gnu.org> <20170624141530.443C5210EB@vcs0.savannah.gnu.org> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1498741510 29053 195.159.176.226 (29 Jun 2017 13:05:10 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Thu, 29 Jun 2017 13:05:10 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux) Cc: Emacs developers To: Noam Postavsky Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jun 29 15:05:05 2017 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dQZ80-00077l-2x for ged-emacs-devel@m.gmane.org; Thu, 29 Jun 2017 15:05:00 +0200 Original-Received: from localhost ([::1]:39120 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dQZ85-0006ut-DB for ged-emacs-devel@m.gmane.org; Thu, 29 Jun 2017 09:05:05 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:39254) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dQZ7F-0006r2-4t for emacs-devel@gnu.org; Thu, 29 Jun 2017 09:04:18 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dQZ7B-0001Qo-Q7 for emacs-devel@gnu.org; Thu, 29 Jun 2017 09:04:13 -0400 Original-Received: from chene.dit.umontreal.ca ([132.204.246.20]:52853) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dQZ7B-0001PY-K9 for emacs-devel@gnu.org; Thu, 29 Jun 2017 09:04:09 -0400 Original-Received: from ceviche.home (lechon.iro.umontreal.ca [132.204.27.242]) by chene.dit.umontreal.ca (8.14.7/8.14.1) with ESMTP id v5TD41pa006698; Thu, 29 Jun 2017 09:04:01 -0400 Original-Received: by ceviche.home (Postfix, from userid 20848) id 004286629C; Thu, 29 Jun 2017 07:46:43 -0400 (EDT) In-Reply-To: (Noam Postavsky's message of "Wed, 28 Jun 2017 22:04:06 -0400") X-NAI-Spam-Flag: NO X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0 X-NAI-Spam-Rules: 2 Rules triggered EDT_SA_DN_PASS=0, RV6059=0 X-NAI-Spam-Version: 2.3.0.9418 : core <6059> : inlines <5955> : streams <1752019> : uri <2452987> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 132.204.246.20 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.devel:216046 Archived-At: > Sounds reasonable, so should it be just this? > (defmacro cl-declaim (&rest specs) > "Like `cl-proclaim', but takes any number of unevaluated, unquoted arguments. > Furthermore, the declarations are registered at compile-time." > (mapc #'cl-proclaim spec)) Ideally, we'd want to retract those things when we're done compiling the current file, but I think the above is an improvement over the current implementation, yes. Stefan