"git@gitlab.caltech.edu:cs24-19fa/git_rec_nano.git" did not exist on "d5ac1ed39513d6632aa4fe47ca1a5a90eb48c312"
Commit 783062a0 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

cosmetic fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3230 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent c7c04bb6
Showing with 1 addition and 1 deletion
+1 -1
......@@ -455,7 +455,7 @@ size_t move_mbleft(const char *buf, size_t pos)
while (TRUE) {
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;
pos_prev -= buf_mb_len;
......
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