diff options
| author | Kenichi Handa | 2006-03-09 12:20:57 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2006-03-09 12:20:57 +0000 |
| commit | 71630f33d0acae88f1e551a8e78edc1c35ce04e1 (patch) | |
| tree | 7bd66c090aa68c135a742e5478d194888b16ca3c /src/coding.c | |
| parent | 61e66a158a521e1ebdaa2e547dcc98d383674a75 (diff) | |
| download | emacs-71630f33d0acae88f1e551a8e78edc1c35ce04e1.tar.gz emacs-71630f33d0acae88f1e551a8e78edc1c35ce04e1.zip | |
(DECODE_EMACS_MULE_COMPOSITION_CHAR): Fix decoding
ASCII component of a composition.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index b96ec82fc16..105d4038b1f 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -735,7 +735,7 @@ detect_coding_emacs_mule (src, src_end, multibytep) | |||
| 735 | c = -1; \ | 735 | c = -1; \ |
| 736 | else \ | 736 | else \ |
| 737 | { \ | 737 | { \ |
| 738 | c -= 0xA0; \ | 738 | c -= 0x80; \ |
| 739 | *p++ = c; \ | 739 | *p++ = c; \ |
| 740 | } \ | 740 | } \ |
| 741 | } \ | 741 | } \ |