Minor comment rewording

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@9261 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy
2012-03-02 16:23:28 +00:00
parent 4ce583c0f8
commit 7c4e992977
+1 -1
View File
@@ -1642,7 +1642,7 @@ static int utf8_input_filter(char *buffer, // result buffer we fill with utf8
if (q + lq > buffer + buflen) { // encoding would walk off end of buffer[]?
memmove(line, p, endline - p); // re-jigger line[] buffer for next call
endline -= (p - line); // adjust end of line[] buffer for next call
return q - buffer; // return what's decoded so far, caller will enlarge buffer
return q - buffer; // return what's decoded so far, caller will consume buffer
}
memcpy(q, multibyte, lq);
q += lq;