diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -731,8 +731,8 @@ concat (nargs, args, target_type, last_special) | |||
| 731 | CHECK_NUMBER (elt, 0); | 731 | CHECK_NUMBER (elt, 0); |
| 732 | if (SINGLE_BYTE_CHAR_P (XINT (elt))) | 732 | if (SINGLE_BYTE_CHAR_P (XINT (elt))) |
| 733 | { | 733 | { |
| 734 | XSTRING (val)->data[toindex++] = XINT (elt); | 734 | XSTRING (val)->data[toindex_byte++] = XINT (elt); |
| 735 | toindex_byte++; | 735 | toindex++; |
| 736 | } | 736 | } |
| 737 | else | 737 | else |
| 738 | /* If we have any multibyte characters, | 738 | /* If we have any multibyte characters, |