cosmetic fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3230 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2005-11-30 16:41:54 +00:00
parent c7c04bb665
commit 783062a0cc
1 changed files with 1 additions and 1 deletions

View File

@ -455,7 +455,7 @@ size_t move_mbleft(const char *buf, size_t pos)
while (TRUE) { while (TRUE) {
int buf_mb_len = parse_mbchar(buf + pos - pos_prev, NULL, NULL); int buf_mb_len = parse_mbchar(buf + pos - pos_prev, NULL, NULL);
if (pos_prev <= (size_t)buf_mb_len) if (pos_prev <= buf_mb_len)
break; break;
pos_prev -= buf_mb_len; pos_prev -= buf_mb_len;