From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/59110 Path: main.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.pretest.bugs,gmane.emacs.gnus.general Subject: Re: Change in bytecomp.el breaks Gnus Date: Thu, 11 Nov 2004 11:45:44 -0600 (CST) Message-ID: <200411111745.iABHji207636@raven.dms.auburn.edu> References: <877jouepy8.fsf@telia.com> NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1100195224 7211 80.91.229.6 (11 Nov 2004 17:47:04 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 11 Nov 2004 17:47:04 +0000 (UTC) Cc: emacs-pretest-bug@gnu.org, ding@gnus.org Original-X-From: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Thu Nov 11 18:46:51 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 1CSJ22-0003U1-00 for ; Thu, 11 Nov 2004 18:46:51 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CSJAY-0007Ex-FY for gebp-emacs-pretest-bug@gmane.org; Thu, 11 Nov 2004 12:55:38 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CSJAW-0007Es-Ie for emacs-pretest-bug@gnu.org; Thu, 11 Nov 2004 12:55:36 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CSJAW-0007Ec-12 for emacs-pretest-bug@gnu.org; Thu, 11 Nov 2004 12:55:36 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CSJAV-0007ES-U7 for emacs-pretest-bug@gnu.org; Thu, 11 Nov 2004 12:55:35 -0500 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CSJ1e-0000Vl-1F; Thu, 11 Nov 2004 12:46:26 -0500 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.12.10/8.12.10) with ESMTP id iABHkPFu013753; Thu, 11 Nov 2004 11:46:25 -0600 (CST) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.7p1+Sun/8.11.7) id iABHji207636; Thu, 11 Nov 2004 11:45:44 -0600 (CST) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: yamaoka@jpl.org In-reply-to: (message from Katsumi Yamaoka on Thu, 11 Nov 2004 20:18:19 +0900) 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:4566 gmane.emacs.gnus.general:59110 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:59110 Katsumi Yamaoka wrote: Although I'm not sure of it, the following patch seems to solve the problem. Your patch does not seem to solve a related problem I reported earlier on emacs-devel, so it probably is not a complete solution: Changes in byte compilation which must be less than a day old, have strange effects. `winner' is no longer usable when winner.elc is used, but still seems to work fine when winner.el is used. After `emacs -q' I get the following ielm run: *** Welcome to IELM *** Type (describe-mode) for help. ELISP> (load "winner") t ELISP> (winner-sorted-window-list) *** Eval error *** Symbol's function definition is void: t ELISP> (load "winner.el") t ELISP> (winner-sorted-window-list) (#) ELISP> Byte compiling winner.el produces: Compiling file /home/teirllm/emacscvsdir/emacs/lisp/winner.el at Tue Nov 9 08:32:15 2004 Entering directory `/home/teirllm/emacscvsdir/emacs/lisp/' winner.el:52:14:Warning: Function `gensym' from cl package called at runtime winner.el:56:10:Warning: Function `gensym' from cl package called at runtime In winner-sorted-window-list: winner.el:125:10:Warning: attempt to inline `t' before it was defined winner.el:124:4:Warning: `t' called as a function In winner-make-point-alist: winner.el:284:33:Warning: attempt to inline `t' before it was defined winner.el:285:44:Warning: `t' called as a function In end of data: winner.el:488:1:Warning: the function `t' is not known to be defined. Comments: The first two warnings are probably legitimate. The function `t' stuff appears to be a bug in byte compilation.