From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/59118 Path: main.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.pretest.bugs,gmane.emacs.gnus.general Subject: Re: Change in bytecomp.el breaks Gnus Date: Fri, 12 Nov 2004 13:30:49 +0900 Organization: Emacsen advocacy group 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 1100233886 31000 80.91.229.6 (12 Nov 2004 04:31:26 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 12 Nov 2004 04:31:26 +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 Fri Nov 12 05:31:20 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 1CST5k-0005TR-00 for ; Fri, 12 Nov 2004 05:31:20 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CSTEH-000827-Hw for gebp-emacs-pretest-bug@gmane.org; Thu, 11 Nov 2004 23:40:09 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CSTEC-00081A-GR for emacs-pretest-bug@gnu.org; Thu, 11 Nov 2004 23:40:05 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CSTEA-00080i-Ri for emacs-pretest-bug@gnu.org; Thu, 11 Nov 2004 23:40:03 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CSTEA-00080f-KN for emacs-pretest-bug@gnu.org; Thu, 11 Nov 2004 23:40:02 -0500 Original-Received: from [69.61.11.2] (helo=washington.hostforweb.net) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1CST5M-0004my-67 for emacs-pretest-bug@gnu.org; Thu, 11 Nov 2004 23:30:56 -0500 Original-Received: from localhost ([127.0.0.1]) by washington.hostforweb.net with esmtpa (Exim 4.42) id 1CST5Q-0004BQ-G1; Thu, 11 Nov 2004 23:31:00 -0500 Original-To: Stefan Monnier X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:b6m9G+jPuV2b2caC81Y+dSIL3R0= X-Hashcash: 1:17:041112:monnier@iro.umontreal.ca::3qQzPbncQzijEuYA:000000000000000000000000000000000000000Ka X-Hashcash: 1:17:041112:teirllm@dms.auburn.edu::9bHbN0GGjB4YNmwq:0000000000000000000000000000000000000001PxZ X-Hashcash: 1:17:041112:emacs-pretest-bug@gnu.org::ikC7zx0ce9v9Kp3W:0000000000000000000000000000000000000IHO X-Hashcash: 1:17:041112:ding@gnus.org::ngikzdx8I2W1OhKm:00000Br6 X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - washington.hostforweb.net X-AntiAbuse: Original Domain - gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: 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:4594 gmane.emacs.gnus.general:59118 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:59118 >>>>> In <871xezbtyh.fsf-monnier+emacs@gnu.org> Stefan Monnier wrote: >> I rebuilt Emacs and found the following case causes the `t' error. >> (defalias 'foo (lambda (s) (message "%s" s))) >> (defun bar (s) (inline (foo s))) > Hmm...indeed. I think I've fixed it now, 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.