aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/charset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charset.c b/src/charset.c
index eb930ccf074..04afa7f3237 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -1373,9 +1373,9 @@ DEFUN ("string", Fstring, Sstring, 1, MANY, 0,
1373 multibyte_p = 1; 1373 multibyte_p = 1;
1374 } 1374 }
1375 1375
1376 /* Here, we can't use make_string_from_bytes because of byte 1376 /* Here, we can't use make_string_from_bytes because of the byte
1377 combining problem. Make a multibyte string if there is any 1377 combining problem. Make a multibyte string if there is any
1378 multibyte character in ARGS to make sure that `(insert 2276)' 1378 multibyte character in ARGS to make sure that `(string 2276)'
1379 returns a multibyte string if running --unibyte. */ 1379 returns a multibyte string if running --unibyte. */
1380 if (multibyte_p) 1380 if (multibyte_p)
1381 val = make_multibyte_string (buf, n, p - buf); 1381 val = make_multibyte_string (buf, n, p - buf);