# HG changeset patch # User Kenichi Handa # Date 904535417 0 # Node ID 7cd25ebef713e83563483f3fa15e70284b9e44b6 # Parent dad3317e5d8c19b7ef286194d5bf1bae8bc065d9 (concat): If Vnonascii_translation_table is non-nil, try to convert a character less than 160 to multibyte. diff -r dad3317e5d8c -r 7cd25ebef713 src/fns.c --- a/src/fns.c Mon Aug 31 03:50:17 1998 +0000 +++ b/src/fns.c Mon Aug 31 03:50:17 1998 +0000 @@ -709,7 +709,9 @@ else { XSETFASTINT (elt, XSTRING (this)->data[thisindex++]); - if (some_multibyte && XINT (elt) >= 0200 + if (some_multibyte + && (XINT (elt) >= 0240 + || ! NILP (Vnonascii_translation_table)) && XINT (elt) < 0400) { c = unibyte_char_to_multibyte (XINT (elt));