Re: [PATCH 1/3] precompose_utf8: drop unused variable

2015-10-05 Thread Torsten Bögershausen
On 2015-10-05 05.43, Jeff King wrote: [] The whole series looks good, cleans up my mess and passes t3910. Thanks for that. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at

[PATCH 1/3] precompose_utf8: drop unused variable

2015-10-04 Thread Jeff King
The result of iconv is assigned to a variable, but we never use it (instead, we check errno and whether the function consumed all bytes). Let's drop the assignment, as it triggers gcc's -Wunused-but-set-variable. Signed-off-by: Jeff King --- This is obviously completely optional;