From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Kim F. Storm" Newsgroups: gmane.emacs.devel Subject: [PATCH] Recent change breaks make bootstrap Date: Tue, 08 Jul 2003 10:47:02 +0200 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <3F0A8506.6040507@cua.dk> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1057654287 6174 80.91.224.249 (8 Jul 2003 08:51:27 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 8 Jul 2003 08:51:27 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Tue Jul 08 10:51:25 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19ZoBs-0001an-00 for ; Tue, 08 Jul 2003 10:51:12 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 19ZoM8-0000Md-00 for ; Tue, 08 Jul 2003 11:01:48 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19Zo9u-0002sX-R3 for emacs-devel@quimby.gnus.org; Tue, 08 Jul 2003 04:49:10 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19Zo9T-0002Sg-Qj for emacs-devel@gnu.org; Tue, 08 Jul 2003 04:48:43 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19Zo8r-0001U9-JX for emacs-devel@gnu.org; Tue, 08 Jul 2003 04:48:10 -0400 Original-Received: from mail-relay.sonofon.dk ([212.88.64.25]) by monty-python.gnu.org with smtp (Exim 4.20) id 19Zo8M-0000MQ-UE for emacs-devel@gnu.org; Tue, 08 Jul 2003 04:47:35 -0400 Original-Received: (qmail 52773 invoked from network); 8 Jul 2003 08:47:33 -0000 Original-Received: from unknown (HELO cua.dk) (213.83.150.2) by 0 with SMTP; 8 Jul 2003 08:47:33 -0000 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20030225 X-Accept-Language: en-us, en Original-To: emacs-devel@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:15481 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:15481 I don't have write access from here, so I would appreciate if someone could install this patch to allow make bootstrap to work again (it was broken by a recent change to mule-cmds.el): ChangeLog entry: 2003-07-08 Kim F. Storm * international/mule-cmds.el (set-display-table-and-terminal-coding-system): Don't break bootstrap if standard-display-table isn't setup yet. Index: lisp/international/mule-cmds.el =================================================================== RCS file: /cvs/emacs/lisp/international/mule-cmds.el,v retrieving revision 1.238 diff -c -r1.238 mule-cmds.el *** lisp/international/mule-cmds.el 7 Jul 2003 20:56:24 -0000 1.238 --- lisp/international/mule-cmds.el 8 Jul 2003 08:39:54 -0000 *************** *** 1689,1697 **** ;; case the user has used standard-display-european earlier in ;; this session. (The MS-DOS port doesn't use that setup, so it ;; doesn't need to undo it.) ! (dotimes (i 128) ! (aset standard-display-table (+ i 128) nil)) ! (aset standard-display-table 146 nil)) (or (eq window-system 'pc) (set-terminal-coding-system coding)))) --- 1689,1698 ---- ;; case the user has used standard-display-european earlier in ;; this session. (The MS-DOS port doesn't use that setup, so it ;; doesn't need to undo it.) ! (when standard-display-table ! (dotimes (i 128) ! (aset standard-display-table (+ i 128) nil)) ! (aset standard-display-table 146 nil))) (or (eq window-system 'pc) (set-terminal-coding-system coding))))