From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: Re: strange warning Date: Tue, 30 Oct 2007 17:28:33 -0400 Message-ID: References: <200710302059.l9UKxebt022977@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 1193779731 14754 80.91.229.12 (30 Oct 2007 21:28:51 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 30 Oct 2007 21:28:51 +0000 (UTC) Cc: emacs-devel@gnu.org To: Dan Nicolaescu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Oct 30 22:28:53 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 1Imydk-0006Kg-V4 for ged-emacs-devel@m.gmane.org; Tue, 30 Oct 2007 22:28:49 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Imydb-0002Ca-AY for ged-emacs-devel@m.gmane.org; Tue, 30 Oct 2007 17:28:39 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ImydY-0002CC-0d for emacs-devel@gnu.org; Tue, 30 Oct 2007 17:28:36 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ImydW-0002Bj-NM for emacs-devel@gnu.org; Tue, 30 Oct 2007 17:28:35 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ImydW-0002Bf-HA for emacs-devel@gnu.org; Tue, 30 Oct 2007 17:28:34 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1ImydW-00027J-85 for emacs-devel@gnu.org; Tue, 30 Oct 2007 17:28:34 -0400 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1ImydV-0006L8-3d; Tue, 30 Oct 2007 17:28:33 -0400 X-Spook: import JPL lynch cypherpunk world domination fissionable X-Ran: H%U%^CIMw>3CPFNr, (Dan Nicolaescu's message of "Tue, 30 Oct 2007 13:59:40 -0700") User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) 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:82165 Archived-At: Dan Nicolaescu wrote: > cvs-status.el:544:1:Warning: the function `cvs-status-get-tags' might > not be defined at runtime. > > But the file contains this: > (defun cvs-status-get-tags () Because cvs-status requires pcvs at compile time, which in turn does (autoload 'cvs-status-get-tags "cvs-status")? Anyway, the (eval-when-compile (require 'pcvs)) can be deleted, and doing so removes this warning.