From: Eli Zaretskii Date: Sun, 21 Nov 1999 11:29:25 +0000 (+0000) Subject: term/internal.el (IT-display-table-setup): Don't overstep X-Git-Tag: emacs-pretest-21.0.90~6040 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a88d2801b8b9a771abf73370dd0f7420df0cbdc9;p=emacs.git term/internal.el (IT-display-table-setup): Don't overstep character code 255. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 786430f60b1..9a7ec62d431 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +1999-11-21 Eli Zaretskii + + * term/internal.el (IT-display-table-setup): Don't overstep + character code 255. + 1999-11-20 Kenichi Handa * ps-mule.el (ps-mule-font-info-database-bdf): Default BDF font diff --git a/lisp/term/internal.el b/lisp/term/internal.el index 5a0ffe29bcc..7568510bfeb 100644 --- a/lisp/term/internal.el +++ b/lisp/term/internal.el @@ -220,7 +220,7 @@ If TABLE is nil or omitted, `standard-display-table' is used." ;; Undo the effects of previous call (where they may have used ;; a different codepage) by reverting the display table for the ;; built-in charset to its pristine shape. - (while (< c (+ offset 128)) + (while (< c 256) (aset disp-tab (make-char built-in-set c) nil) (setq c (1+ c))) (while surrogates