emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] Recent change breaks make bootstrap


From: Kim F. Storm
Subject: [PATCH] Recent change breaks make bootstrap
Date: Tue, 08 Jul 2003 10:47:02 +0200
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20030225

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  <address@hidden>

* 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))))






reply via email to

[Prev in Thread] Current Thread [Next in Thread]