aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fns.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 76455feb10e..53f980c1e97 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -711,7 +711,8 @@ concat (nargs, args, target_type, last_special)
711 XSETFASTINT (elt, XSTRING (this)->data[thisindex++]); 711 XSETFASTINT (elt, XSTRING (this)->data[thisindex++]);
712 if (some_multibyte 712 if (some_multibyte
713 && (XINT (elt) >= 0240 713 && (XINT (elt) >= 0240
714 || ! NILP (Vnonascii_translation_table)) 714 || (XINT (elt) >= 0200
715 && ! NILP (Vnonascii_translation_table)))
715 && XINT (elt) < 0400) 716 && XINT (elt) < 0400)
716 { 717 {
717 c = unibyte_char_to_multibyte (XINT (elt)); 718 c = unibyte_char_to_multibyte (XINT (elt));