diff options
| author | Eli Zaretskii | 2001-11-04 18:52:30 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-11-04 18:52:30 +0000 |
| commit | 051a608df8160954beaf36e9d3baee18e2480dee (patch) | |
| tree | f3fdc0b8d91c5da5cff002cffe731b982593433f | |
| parent | 4e39768886730d67ab7721ec3cf942f7a7041483 (diff) | |
| download | emacs-051a608df8160954beaf36e9d3baee18e2480dee.tar.gz emacs-051a608df8160954beaf36e9d3baee18e2480dee.zip | |
(term-setup-hook): Add IT-setup-unicode-display.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/term/internal.el | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b6045a074a9..98102130fa4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-11-04 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * term/internal.el (term-setup-hook): Add IT-setup-unicode-display. | ||
| 4 | |||
| 1 | 2001-11-04 Miles Bader <miles@gnu.org> | 5 | 2001-11-04 Miles Bader <miles@gnu.org> |
| 2 | 6 | ||
| 3 | * startup.el (fancy-splash-head): Reapply Gerd's hack to make the | 7 | * startup.el (fancy-splash-head): Reapply Gerd's hack to make the |
diff --git a/lisp/term/internal.el b/lisp/term/internal.el index 2c7076264cd..6885bc8f936 100644 --- a/lisp/term/internal.el +++ b/lisp/term/internal.el | |||
| @@ -714,6 +714,9 @@ list. You can (and should) also run it whenever the value of | |||
| 714 | ;; until after the terminal is set and user's .emacs is processed, | 714 | ;; until after the terminal is set and user's .emacs is processed, |
| 715 | ;; because people might define their `dos-codepage-setup-hook' there. | 715 | ;; because people might define their `dos-codepage-setup-hook' there. |
| 716 | (add-hook 'term-setup-hook 'dos-codepage-setup) | 716 | (add-hook 'term-setup-hook 'dos-codepage-setup) |
| 717 | ;; It's time: too many input methods in leim/quail produce | ||
| 718 | ;; Unicode characters. Let the user see them. | ||
| 719 | (add-hook 'term-setup-hook 'IT-setup-unicode-display t) | ||
| 717 | 720 | ||
| 718 | ;; In multibyte mode, we want unibyte buffers to be displayed using | 721 | ;; In multibyte mode, we want unibyte buffers to be displayed using |
| 719 | ;; the terminal coding system, so that they display correctly on the | 722 | ;; the terminal coding system, so that they display correctly on the |