diff lisp/term/internal.el @ 26515:9f3d02d7daa8

term/internal.el (IT-display-table-setup): Don't overstep character code 255.
author Eli Zaretskii <eliz@gnu.org>
date Sun, 21 Nov 1999 11:29:25 +0000
parents 87e4cdfac07b
children f3cc4443dca2
line wrap: on
line diff
--- a/lisp/term/internal.el	Sat Nov 20 06:51:09 1999 +0000
+++ b/lisp/term/internal.el	Sun Nov 21 11:29:25 1999 +0000
@@ -220,7 +220,7 @@
     ;; 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