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: strange byte compiler behavior Date: Mon, 31 Dec 2007 12:55:40 -0800 Message-ID: <200712312055.lBVKteSa012881@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 1199134659 16294 80.91.229.12 (31 Dec 2007 20:57:39 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 31 Dec 2007 20:57:39 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Dec 31 21:57:52 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 1J9Rhm-00007Y-DG for ged-emacs-devel@m.gmane.org; Mon, 31 Dec 2007 21:57:50 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J9RhQ-0006Fg-Gg for ged-emacs-devel@m.gmane.org; Mon, 31 Dec 2007 15:57:28 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J9RhN-0006Fb-Hl for emacs-devel@gnu.org; Mon, 31 Dec 2007 15:57:25 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J9RhM-0006F5-3Y for emacs-devel@gnu.org; Mon, 31 Dec 2007 15:57:25 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J9RhM-0006F2-0q for emacs-devel@gnu.org; Mon, 31 Dec 2007 15:57:24 -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 1J9RhL-0003Lc-Fp for emacs-devel@gnu.org; Mon, 31 Dec 2007 15:57:23 -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 lBVKteSa012881 for ; Mon, 31 Dec 2007 12:55:40 -0800 (PST) Original-Lines: 14 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:85756 Archived-At: When compiling vc-cvs in batch mode (cd emacs/lisp; make recompile) no warning is issued. When compiling it with M-x byte-compile-file this warning is issued: In vc-cvs-register: vc-cvs.el:301:41:Warning: reference to free variable `file' The warning is correct, it looks like vc-cvs-register has a bug, it should look at `files', not `file'. Any idea why this warning is not issued in batch mode?