From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/59125 Path: main.gmane.org!not-for-mail From: Stefan Newsgroups: gmane.emacs.pretest.bugs,gmane.emacs.gnus.general Subject: Re: Change in bytecomp.el breaks Gnus Date: Sat, 13 Nov 2004 18:03:00 -0500 Message-ID: References: <877jouepy8.fsf@telia.com> <200411111745.iABHji207636@raven.dms.auburn.edu> <871xezbtyh.fsf-monnier+emacs@gnu.org> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1100387009 6364 80.91.229.6 (13 Nov 2004 23:03:29 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 13 Nov 2004 23:03:29 +0000 (UTC) Cc: emacs-pretest-bug@gnu.org, Luc Teirlinck , ding@gnus.org Original-X-From: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Sun Nov 14 00:03:14 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CT6vK-0002Or-00 for ; Sun, 14 Nov 2004 00:03:14 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CT73x-0007db-57 for gebp-emacs-pretest-bug@gmane.org; Sat, 13 Nov 2004 18:12:09 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CT73t-0007ck-L0 for emacs-pretest-bug@gnu.org; Sat, 13 Nov 2004 18:12:05 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CT73t-0007cU-4J for emacs-pretest-bug@gnu.org; Sat, 13 Nov 2004 18:12:05 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CT73s-0007cG-R6 for emacs-pretest-bug@gnu.org; Sat, 13 Nov 2004 18:12:04 -0500 Original-Received: from [206.47.199.166] (helo=simmts8-srv.bellnexxia.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CT6v8-0002mE-8G for emacs-pretest-bug@gnu.org; Sat, 13 Nov 2004 18:03:02 -0500 Original-Received: from empanada.home ([67.71.26.166]) by simmts8-srv.bellnexxia.net (InterMail vM.5.01.06.10 201-253-122-130-110-20040306) with ESMTP id <20041113230301.IVBB1623.simmts8-srv.bellnexxia.net@empanada.home>; Sat, 13 Nov 2004 18:03:01 -0500 Original-Received: by empanada.home (Postfix, from userid 502) id 4DFE93671AF; Sat, 13 Nov 2004 18:03:00 -0500 (EST) Original-To: Katsumi Yamaoka In-Reply-To: (Katsumi Yamaoka's message of "Fri, 12 Nov 2004 13:30:49 +0900") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/21.3.50 (darwin) X-BeenThere: emacs-pretest-bug@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: emacs-pretest-bug.gnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Errors-To: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.pretest.bugs:4634 gmane.emacs.gnus.general:59125 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:59125 > It does the trick. Thanks. Though it may not be a real > problem, the compiler warns with the following forms: > (if (fboundp 'message) (defalias 'foo 'message)) > (defun bar () (foo "Hello World")) > In end of data: > test5.el:2:1:Warning: the function `foo' is not known to be defined. That's normal and correct. If `message' is not bound, then `foo' won't be bound either, so `foo' is not guaranteed to be defined. Stefan