1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-28 19:00:42 -08:00

Add a comment in set-display-table-and-terminal-coding-system

explaining why we futz with display tables.
This commit is contained in:
Eli Zaretskii 2003-06-19 16:12:21 +00:00
parent 87d9913f72
commit a67ae60e4a

View file

@ -1688,6 +1688,11 @@ The default status is as follows:
(let ((coding (get-language-info language-name 'unibyte-display)))
(if coding
(standard-display-european-internal)
;; The following 2 lines undo the 8-bit display that we set up
;; in standard-display-european-internal, which see. This is in
;; 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.)
(standard-display-default (if (eq window-system 'pc) 128 160) 255)
(aset standard-display-table 146 nil))
(or (eq window-system 'pc)