aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2000-02-09 20:37:57 +0000
committerDave Love2000-02-09 20:37:57 +0000
commitf4db5c4b6610da1b4fb57e5c44f16880d3a46aa7 (patch)
treea9f34808e9caa4971b8d0b68c1a43dc7d4e79979 /src
parent6cbc1482febf63641cb4c8b6e231ff62702c127a (diff)
downloademacs-f4db5c4b6610da1b4fb57e5c44f16880d3a46aa7.tar.gz
emacs-f4db5c4b6610da1b4fb57e5c44f16880d3a46aa7.zip
Comment fix.
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);