]> code.delx.au - gnu-emacs/commitdiff
(unibyte_char_to_multibyte): Don't convert 7-bit ASCII characters via
authorEli Zaretskii <eliz@gnu.org>
Mon, 21 Dec 1998 16:12:53 +0000 (16:12 +0000)
committerEli Zaretskii <eliz@gnu.org>
Mon, 21 Dec 1998 16:12:53 +0000 (16:12 +0000)
nonascii-translation-table.

src/charset.c

index ecf70b0ec1b95d4628b5496b68ef0641747da7e3..0b3d4266c8df8dd6c4a90c4e845f09bd43250a7f 100644 (file)
@@ -358,7 +358,7 @@ int
 unibyte_char_to_multibyte (c)
      int c;
 {
-  if (c < 0400)
+  if (c < 0400 && c >= 0200)
     {
       int c_save = c;