comparison src/charset.c @ 27653:1e05c673aa18

Comment fix.
author Dave Love <fx@gnu.org>
date Wed, 09 Feb 2000 20:37:57 +0000
parents 8c80483f84c7
children e2de8c3d9332
comparison
equal deleted inserted replaced
27652:9c2aec874fef 27653:1e05c673aa18
1371 1371
1372 if (!SINGLE_BYTE_CHAR_P (c)) 1372 if (!SINGLE_BYTE_CHAR_P (c))
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);
1382 else 1382 else
1383 val = make_unibyte_string (buf, p - buf); 1383 val = make_unibyte_string (buf, p - buf);