From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Sebastian Wiesner Newsgroups: gmane.emacs.help Subject: Re: Flycheck reports are never satisfying!? Date: Thu, 28 Aug 2014 17:15:13 +0200 Message-ID: References: <86ha0w95vp.fsf@somewhere.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1409240028 1738 80.91.229.3 (28 Aug 2014 15:33:48 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 28 Aug 2014 15:33:48 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Stefan Monnier Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Aug 28 17:33:37 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XN1hh-0004ZP-KN for geh-help-gnu-emacs@m.gmane.org; Thu, 28 Aug 2014 17:33:37 +0200 Original-Received: from localhost ([::1]:37472 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XN1hh-0006yi-49 for geh-help-gnu-emacs@m.gmane.org; Thu, 28 Aug 2014 11:33:37 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:44997) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XN1Q8-0001fZ-N4 for help-gnu-emacs@gnu.org; Thu, 28 Aug 2014 11:15:33 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XN1Pz-0005oH-Ay for help-gnu-emacs@gnu.org; Thu, 28 Aug 2014 11:15:28 -0400 Original-Received: from vega.uberspace.de ([95.143.172.245]:47652) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XN1Pz-0005nr-23 for help-gnu-emacs@gnu.org; Thu, 28 Aug 2014 11:15:19 -0400 Original-Received: (qmail 17273 invoked from network); 28 Aug 2014 15:15:15 -0000 Original-Received: from localhost (HELO hostname.fritz.box) (127.0.0.1) by vega.uberspace.de with SMTP; 28 Aug 2014 15:15:15 -0000 In-Reply-To: X-Mailer: Apple Mail (2.1878.6) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 95.143.172.245 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:99469 Archived-At: Am 28.08.2014 um 15:40 schrieb Stefan Monnier = : >> --8<---------------cut here---------------start------------->8--- >> 25 9 warning assignment to free variable = `flycheck-indication-mode' (emacs-lisp) >> --8<---------------cut here---------------end--------------->8--- >=20 > The .emacs file is very much unlike a normal Elisp package: instead of > defining its own functions/command/variables and exporting them for = use, > it normally does mostly things like modifying other > package's variables. >=20 > And those packages are usually not loaded yet, because we want to load > them lazily to speed up startup. >=20 > So yes, if you try to byte-compile your .emacs chances are the > byte-compiler will give you lots and lots of warnings about = assignments > or references to free variables. >=20 > That's a problem I'd like to fix, but I'm not completely sure how. > Suggestions welcome, Isn=92t that what we have =84with-eval-after-load=93 for? At least, = that=92s what I am using in my init.el to avoid warnings about free = variables.