Commit 069674c2 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

comment fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3101 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent ea9d03f1
Showing with 2 additions and 2 deletions
+2 -2
......@@ -365,8 +365,8 @@ int parse_mbchar(const char *buf, char *chr, size_t *col)
/* Get the number of bytes in the multibyte character. */
buf_mb_len = mblen(buf, MB_CUR_MAX);
/* If buf contains an invalid multibyte character, set bad_chr
* to TRUE and interpret buf's first byte. */
/* If buf contains an invalid multibyte character, only
* interpret buf's first byte. */
if (buf_mb_len < 0) {
mblen(NULL, 0);
buf_mb_len = 1;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment