From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dan Nicolaescu Newsgroups: gmane.emacs.devel Subject: Re: summary for the remaining byte compiler warnings Date: Fri, 09 Nov 2007 08:34:14 -0800 Message-ID: <200711091634.lA9GYEpA018651@oogie-boogie.ics.uci.edu> References: <200711090657.lA96v27o006808@oogie-boogie.ics.uci.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1194626256 26325 80.91.229.12 (9 Nov 2007 16:37:36 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 9 Nov 2007 16:37:36 +0000 (UTC) Cc: emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Nov 09 17:37:39 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IqWrR-0002C8-DP for ged-emacs-devel@m.gmane.org; Fri, 09 Nov 2007 17:37:37 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IqWrF-0007K7-JT for ged-emacs-devel@m.gmane.org; Fri, 09 Nov 2007 11:37:25 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IqWrB-0007Ix-OP for emacs-devel@gnu.org; Fri, 09 Nov 2007 11:37:21 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IqWr9-0007H1-SE for emacs-devel@gnu.org; Fri, 09 Nov 2007 11:37:20 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IqWr9-0007Gs-Jn for emacs-devel@gnu.org; Fri, 09 Nov 2007 11:37:19 -0500 Original-Received: from oogie-boogie.ics.uci.edu ([128.195.1.41]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IqWr9-00029h-2R for emacs-devel@gnu.org; Fri, 09 Nov 2007 11:37:19 -0500 Original-Received: from mothra.ics.uci.edu (mothra.ics.uci.edu [128.195.6.93]) by oogie-boogie.ics.uci.edu (8.13.6/8.13.6) with ESMTP id lA9GYEpA018651; Fri, 9 Nov 2007 08:34:14 -0800 (PST) In-Reply-To: (Stefan Monnier's message of "Fri\, 09 Nov 2007 10\:59\:19 -0500") Original-Lines: 20 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (score=-1.44, required 5, autolearn=disabled, ALL_TRUSTED -1.44) X-ICS-MailScanner-From: dann@mothra.ics.uci.edu X-detected-kernel: by monty-python.gnu.org: Solaris 9 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:82877 Archived-At: Stefan Monnier writes: > > How about this? > > > In toplevel form: > > python.el:2067:1:Warning: reference to free variable > > `python-mode-abbrev-table' > > Here the problem is that the byte-compiler doesn't understand that > > (define-abbrev-table 'python-mode-abbrev-table () > "Abbrev table for Python mode. > The default contents correspond to the elements of `python-skeletons'." > ;; Allow / in abbrevs. > :regexp "\\<\\([[:word:]/]+\\)\\W*") > > defines the `python-mode-abbrev-table' variable. I believe I've just > fixed it. Shouldn't define-abbrev-table also get font-lock support?