unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: "Kim F. Storm" <storm@cua.dk>
Subject: [PATCH] Recent change breaks make bootstrap
Date: Tue, 08 Jul 2003 10:47:02 +0200	[thread overview]
Message-ID: <3F0A8506.6040507@cua.dk> (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))))

             reply	other threads:[~2003-07-08  8:47 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-07-08  8:47 Kim F. Storm [this message]
2003-07-08  9:27 ` [PATCH] Recent change breaks make bootstrap John Paul Wallington

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3F0A8506.6040507@cua.dk \
    --to=storm@cua.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).