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: strange warning Date: Tue, 30 Oct 2007 14:35:46 -0700 Message-ID: <200710302135.l9ULZkP1024662@oogie-boogie.ics.uci.edu> 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 1193782999 26032 80.91.229.12 (30 Oct 2007 22:23:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 30 Oct 2007 22:23:19 +0000 (UTC) Cc: emacs-devel@gnu.org To: Glenn Morris Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Oct 30 23:23:22 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 1ImzUO-0006EJ-52 for ged-emacs-devel@m.gmane.org; Tue, 30 Oct 2007 23:23:12 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ImzUE-0000R3-2n for ged-emacs-devel@m.gmane.org; Tue, 30 Oct 2007 18:23:02 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ImzUA-0000N0-79 for emacs-devel@gnu.org; Tue, 30 Oct 2007 18:22:58 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ImzU9-0000LD-Gv for emacs-devel@gnu.org; Tue, 30 Oct 2007 18:22:57 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ImzU9-0000L5-8T for emacs-devel@gnu.org; Tue, 30 Oct 2007 18:22:57 -0400 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 1Imyod-00075H-4K; Tue, 30 Oct 2007 17:40:03 -0400 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 l9ULZkP1024662; Tue, 30 Oct 2007 14:35:47 -0700 (PDT) In-Reply-To: (Glenn Morris's message of "Tue\, 30 Oct 2007 17\:28\:33 -0400") Original-Lines: 18 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:82170 Archived-At: Glenn Morris writes: > 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")? Yep, I saw that, but IMHO the warning is not necessary... > Anyway, the (eval-when-compile (require 'pcvs)) can be deleted, and > doing so removes this warning.