unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] Recent change breaks make bootstrap
@ 2003-07-08  8:47 Kim F. Storm
  2003-07-08  9:27 ` John Paul Wallington
  0 siblings, 1 reply; 2+ messages in thread
From: Kim F. Storm @ 2003-07-08  8:47 UTC (permalink / raw


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  <storm@cua.dk>

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] Recent change breaks make bootstrap
  2003-07-08  8:47 [PATCH] Recent change breaks make bootstrap Kim F. Storm
@ 2003-07-08  9:27 ` John Paul Wallington
  0 siblings, 0 replies; 2+ messages in thread
From: John Paul Wallington @ 2003-07-08  9:27 UTC (permalink / raw
  Cc: emacs-devel

> 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

Done.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-07-08  9:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-07-08  8:47 [PATCH] Recent change breaks make bootstrap Kim F. Storm
2003-07-08  9:27 ` John Paul Wallington

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).