From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: Byte compiling started doing strange things. Date: Tue, 9 Nov 2004 08:52:40 -0600 (CST) Message-ID: <200411091452.iA9Eqem15301@raven.dms.auburn.edu> NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1100012059 17922 80.91.229.6 (9 Nov 2004 14:54:19 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 9 Nov 2004 14:54:19 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Nov 09 15:54:08 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 1CRXNn-00014n-00 for ; Tue, 09 Nov 2004 15:54:08 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CRXWC-0001C2-Ga for ged-emacs-devel@m.gmane.org; Tue, 09 Nov 2004 10:02:48 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CRXVr-0001Aq-Dn for emacs-devel@gnu.org; Tue, 09 Nov 2004 10:02:27 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CRXVp-000196-1h for emacs-devel@gnu.org; Tue, 09 Nov 2004 10:02:25 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CRXVo-000192-QU for emacs-devel@gnu.org; Tue, 09 Nov 2004 10:02:24 -0500 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CRXMx-0002Le-Rf for emacs-devel@gnu.org; Tue, 09 Nov 2004 09:53:16 -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 iA9ErFFu029116 for ; Tue, 9 Nov 2004 08:53:15 -0600 (CST) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.7p1+Sun/8.11.7) id iA9Eqem15301; Tue, 9 Nov 2004 08:52:40 -0600 (CST) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: emacs-devel@gnu.org 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: main.gmane.org gmane.emacs.devel:29648 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:29648 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. Sincerely, Luc.