diff options
| author | Kenichi Handa | 2002-09-05 00:27:49 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2002-09-05 00:27:49 +0000 |
| commit | 3873f5a52edea11050122b101b1e834b7713d5fc (patch) | |
| tree | 8e706be26367bde3be6a82bfed6fb0ca601b01b8 | |
| parent | 16d2fae910f2a7684d81aae6bb457923ec0d969a (diff) | |
| download | emacs-3873f5a52edea11050122b101b1e834b7713d5fc.tar.gz emacs-3873f5a52edea11050122b101b1e834b7713d5fc.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/international/utf-8.el | 8 |
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 190ee238f0a..b43b88919bd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-09-05 Kenichi Handa <handa@etl.go.jp> | ||
| 2 | |||
| 3 | * international/mule.el (decode-char): Cancel the previous change. | ||
| 4 | |||
| 1 | 2002-09-04 John Paul Wallington <jpw@shootybangbang.com> | 5 | 2002-09-04 John Paul Wallington <jpw@shootybangbang.com> |
| 2 | 6 | ||
| 3 | * startup.el (use-fancy-splash-screens-p): If `fancy-splash-frame' | 7 | * startup.el (use-fancy-splash-screens-p): If `fancy-splash-frame' |
diff --git a/lisp/international/utf-8.el b/lisp/international/utf-8.el index 327bc7261de..a85d980bc02 100644 --- a/lisp/international/utf-8.el +++ b/lisp/international/utf-8.el | |||
| @@ -127,14 +127,16 @@ decoded into mule-unicode-0100-24ff.") | |||
| 127 | (?$,1(|(B . ?,L|(B) (?$,1(~(B . ?,L~(B) (?$,1((B . ?,L(B))) | 127 | (?$,1(|(B . ?,L|(B) (?$,1(~(B . ?,L~(B) (?$,1((B . ?,L(B))) |
| 128 | 128 | ||
| 129 | (defcustom utf-8-fragment-on-decoding nil | 129 | (defcustom utf-8-fragment-on-decoding nil |
| 130 | "Whether or not to decode some scripts in UTF-8 text into 8-bit characters. | 130 | "Whether or not to decode some scripts in UTF-8 text into iso8859 charsets. |
| 131 | Setting this means that the relevant Cyrillic and Greek characters are | 131 | Setting this means that the relevant Cyrillic and Greek characters are |
| 132 | decoded into the iso8859 charsets rather than into | 132 | decoded into the iso8859 charsets rather than into |
| 133 | mule-unicode-0100-24ff. The 8-bit characters take half as much space | 133 | mule-unicode-0100-24ff. The iso8859 charsets take half as much space |
| 134 | in the buffer, but using them may affect how the buffer can be re-encoded | 134 | in the buffer, but using them may affect how the buffer can be re-encoded |
| 135 | and may require a different input method to search for them, for instance. | 135 | and may require a different input method to search for them, for instance. |
| 136 | See `unify-8859-on-decoding-mode' and `unify-8859-on-encoding-mode' | 136 | See `unify-8859-on-decoding-mode' and `unify-8859-on-encoding-mode' |
| 137 | for mechanisms to make this largely transparent." | 137 | for mechanisms to make this largely transparent. |
| 138 | |||
| 139 | Setting this variable outside customize has no effect." | ||
| 138 | :set (lambda (s v) | 140 | :set (lambda (s v) |
| 139 | (if v | 141 | (if v |
| 140 | (define-translation-table 'utf-8-translation-table-for-decode | 142 | (define-translation-table 'utf-8-translation-table-for-decode |