From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: =?utf-8?Q?Johan_Bockg=C3=A5rd?= Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] master c75eb10: Don't change byte-compile-delete-errors at runtime (Bug#27340) Date: Sat, 01 Jul 2017 10:59:54 +0200 Message-ID: <8737agttv9.fsf@gnu.org> References: <20170624141528.514.4459@vcs0.savannah.gnu.org> <20170624141530.443C5210EB@vcs0.savannah.gnu.org> <87r2y28ule.fsf@gnu.org> <871sq28sk0.fsf@gnu.org> <87h8yy78bh.fsf@gnu.org> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1498899634 2582 195.159.176.226 (1 Jul 2017 09:00:34 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sat, 1 Jul 2017 09:00:34 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) Cc: emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jul 01 11:00:26 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 1dREGN-00009n-Ho for ged-emacs-devel@m.gmane.org; Sat, 01 Jul 2017 11:00:23 +0200 Original-Received: from localhost ([::1]:47515 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dREGS-0006ET-GN for ged-emacs-devel@m.gmane.org; Sat, 01 Jul 2017 05:00:28 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33887) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dREG3-000649-If for emacs-devel@gnu.org; Sat, 01 Jul 2017 05:00:08 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dREFz-0007M8-Nw for emacs-devel@gnu.org; Sat, 01 Jul 2017 05:00:03 -0400 Original-Received: from manu26.manufrog.com ([98.142.98.2]:55366) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dREFz-0007Le-IE for emacs-devel@gnu.org; Sat, 01 Jul 2017 04:59:59 -0400 Original-Received: from c-5306e555.04-211-6c6b701.cust.bredbandsbolaget.se ([85.229.6.83]:54526 helo=muon.localdomain) by manu26.manufrog.com with esmtpa (Exim 4.89) (envelope-from ) id 1dREFw-000f7M-ST; Sat, 01 Jul 2017 10:59:57 +0200 Original-Received: by muon.localdomain (Postfix, from userid 1000) id 9821A4842CA; Sat, 1 Jul 2017 10:59:54 +0200 (CEST) In-Reply-To: (Stefan Monnier's message of "Fri, 30 Jun 2017 02:06:33 -0400") X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - manu26.manufrog.com X-AntiAbuse: Original Domain - gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - gnu.org X-Get-Message-Sender-Via: manu26.manufrog.com: authenticated_id: noreply@tryserumgardar.se X-Authenticated-Sender: manu26.manufrog.com: noreply@tryserumgardar.se X-Source: X-Source-Args: X-Source-Dir: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 98.142.98.2 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:216074 Archived-At: Stefan Monnier writes: >> In CL declaim can be used to make variables special. (In fact, `special' >> is the only declaration that must have an effect in all conforming CL >> implementations.) > > Right, AFAIK it's largely equivalent to Elisp's (defvar foo). > > not sure how it works in CL `proclaim' makes "global declarations", aka "proclamations". `declaim' is like `proclaim' but also has compile-time effects.