Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a88d2801
Commit
a88d2801
authored
Nov 21, 1999
by
Eli Zaretskii
Browse files
term/internal.el (IT-display-table-setup): Don't overstep
character code 255.
parent
fa71a532
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/term/internal.el
lisp/term/internal.el
+1
-1
No files found.
lisp/ChangeLog
View file @
a88d2801
1999-11-21 Eli Zaretskii <eliz@is.elta.co.il>
* term/internal.el (IT-display-table-setup): Don't overstep
character code 255.
1999-11-20 Kenichi Handa <handa@mule.m17n.org>
* ps-mule.el (ps-mule-font-info-database-bdf): Default BDF font
...
...
lisp/term/internal.el
View file @
a88d2801
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment