diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 4 |
1 files changed, 3 insertions, 1 deletions
| @@ -709,7 +709,9 @@ concat (nargs, args, target_type, last_special) | |||
| 709 | else | 709 | else |
| 710 | { | 710 | { |
| 711 | XSETFASTINT (elt, XSTRING (this)->data[thisindex++]); | 711 | XSETFASTINT (elt, XSTRING (this)->data[thisindex++]); |
| 712 | if (some_multibyte && XINT (elt) >= 0200 | 712 | if (some_multibyte |
| 713 | && (XINT (elt) >= 0240 | ||
| 714 | || ! NILP (Vnonascii_translation_table)) | ||
| 713 | && XINT (elt) < 0400) | 715 | && XINT (elt) < 0400) |
| 714 | { | 716 | { |
| 715 | c = unibyte_char_to_multibyte (XINT (elt)); | 717 | c = unibyte_char_to_multibyte (XINT (elt)); |