diff options
| -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 |