diff options
| author | Kenichi Handa | 2001-03-05 07:21:30 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2001-03-05 07:21:30 +0000 |
| commit | 203682cccc156eeb3412a93c08ce3da45ede2759 (patch) | |
| tree | b4dd25406042646ba3a35556cfe5a2b167b19fb9 | |
| parent | 5ef834ea9032214344f353019a6c644e6f8c2772 (diff) | |
| download | emacs-203682cccc156eeb3412a93c08ce3da45ede2759.tar.gz emacs-203682cccc156eeb3412a93c08ce3da45ede2759.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/international/utf-8.el | 2 | ||||
| -rw-r--r-- | src/ChangeLog | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/international/utf-8.el b/lisp/international/utf-8.el index 0814e0900ab..acd9e14706a 100644 --- a/lisp/international/utf-8.el +++ b/lisp/international/utf-8.el | |||
| @@ -139,7 +139,7 @@ | |||
| 139 | ;; U+3400 .. U+DFFF | 139 | ;; U+3400 .. U+DFFF |
| 140 | ;; keep those bytes as eight-bit-{control|graphic} | 140 | ;; keep those bytes as eight-bit-{control|graphic} |
| 141 | (if (r3 < #xe000) | 141 | (if (r3 < #xe000) |
| 142 | (;; #xe0 < r0 < #xf0, so r0 is eight-bit-graphic | 142 | (;; #xe0 <= r0 < #xf0, so r0 is eight-bit-graphic |
| 143 | (r3 = ,(charset-id 'eight-bit-graphic)) | 143 | (r3 = ,(charset-id 'eight-bit-graphic)) |
| 144 | (write-multibyte-character r3 r0) | 144 | (write-multibyte-character r3 r0) |
| 145 | (if (r1 < #xa0) | 145 | (if (r1 < #xa0) |
diff --git a/src/ChangeLog b/src/ChangeLog index c1f10e1abf1..70d32d7126d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | * coding.c (syms_of_coding): Docstring modified. | 3 | * coding.c (syms_of_coding): Docstring modified. |
| 4 | 4 | ||
| 5 | 2001-02-28 Kenichi Handa <handa@etl.go.jp> | 5 | 2001-03-05 Kenichi Handa <handa@etl.go.jp> |
| 6 | 6 | ||
| 7 | * charset.c (char_to_string): If a single byte char has modifier | 7 | * charset.c (char_to_string): If a single byte char has modifier |
| 8 | bits that can't be reflected to the character code, ignore them | 8 | bits that can't be reflected to the character code, ignore them |