From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: How do I remove "reference to free variable" warnings on buffer-local variables? Date: Wed, 11 Nov 2009 00:09:33 -0500 Organization: UseNetServer.com Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1257918088 10372 80.91.229.12 (11 Nov 2009 05:41:28 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 11 Nov 2009 05:41:28 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Nov 11 06:41:22 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1N85xJ-00031N-K0 for geh-help-gnu-emacs@m.gmane.org; Wed, 11 Nov 2009 06:41:21 +0100 Original-Received: from localhost ([127.0.0.1]:51945 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N85xI-0002Tg-QK for geh-help-gnu-emacs@m.gmane.org; Wed, 11 Nov 2009 00:41:20 -0500 Original-Path: news.stanford.edu!usenet.stanford.edu!news.glorb.com!news2.glorb.com!npeer02.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!post02.iad.highwinds-media.com!TEKSAVVY.COM-Free-a2kHrUvQQWlmc!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux) Cancel-Lock: sha1:GU6Ec45HYVSmQp5iFUm/bz+SMQQ= Original-X-Complaints-To: abuse@usenetserver.com Original-Lines: 20 Original-X-Trace: b78af4afa470de9af3e8c12251 Original-Xref: news.stanford.edu gnu.emacs.help:174575 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:69646 Archived-At: > I have code that uses buffer local variables. I don't want to declare > this variable global. So how can I remove messages of the form > "reference to free variable `...' " when I byte compile a file? There is a special use of defvar designed specifically for that situation: (defvar ) this will have no effect other than silence the byte-compiler. Stefan PS: If you really really want to, you can put it inside `eval-when-compile', in which case it may currently work by accident, but it logically shouldn't work (and may not work in the future) since (defvar ) does nothing when evaluated, and `eval-when-compile' asks the byte-compiler to eval its argument instead of byte-compiling it.