From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Stefan Monnier" Newsgroups: gmane.emacs.devel Subject: Re: make bootstrap fails Date: Fri, 15 Nov 2002 09:24:08 -0500 Sender: emacs-devel-admin@gnu.org Message-ID: <200211151424.gAFEO8323944@rum.cs.yale.edu> References: <8465v796b2.fsf@crybaby.uni-duisburg.de> <87k7jmkhly.fsf@enberg.org> <200211142338.IAA20671@etlken.m17n.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1037371224 8021 80.91.224.249 (15 Nov 2002 14:40:24 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 15 Nov 2002 14:40:24 +0000 (UTC) Cc: rms@gnu.org, henrik@enberg.org, kai.grossjohann@uni-duisburg.de, emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18Chds-000256-00 for ; Fri, 15 Nov 2002 15:40:20 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18Chqn-0000Uk-00 for ; Fri, 15 Nov 2002 15:53:41 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 18ChcI-0007fn-00; Fri, 15 Nov 2002 09:38:42 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 18ChOP-0000uZ-00 for emacs-devel@gnu.org; Fri, 15 Nov 2002 09:24:21 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 18ChOL-0000sh-00 for emacs-devel@gnu.org; Fri, 15 Nov 2002 09:24:19 -0500 Original-Received: from rum.cs.yale.edu ([128.36.229.169]) by monty-python.gnu.org with esmtp (Exim 4.10) id 18ChOI-0000sO-00; Fri, 15 Nov 2002 09:24:14 -0500 Original-Received: (from monnier@localhost) by rum.cs.yale.edu (8.11.6/8.11.6) id gAFEO8323944; Fri, 15 Nov 2002 09:24:08 -0500 X-Mailer: exmh version 2.4 06/23/2000 with nmh-1.0.4 Original-To: Kenichi Handa Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:9454 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:9454 > cc-bytecomp-defun changes the function definition of the > argument symbol (in the current case; char-table-p) to > cc-bytecomp-ignore while byte-compiling. But the code does: (if (and (cc-bytecomp-is-compiling) (= cc-bytecomp-load-depth 0) (not (fboundp ',fun))) (fset ',fun 'cc-bytecomp-ignore)))) and since char-table-p is bound, it should leave char-table-p alone. So there's still yet-something-else going on. Stefan