On Mon, May 16, 2016 at 4:41 PM, Junio C Hamano [off-list ref] wrote:
On Mon, May 16, 2016 at 4:19 PM, Stefan Beller [off-list ref] wrote:
quoted
quoted
if (*p) {
p += 2;
- for (eol = p; *eol && *eol != '\n'; eol++)
- ; /* do nothing */
+ eol = strchrnul(p, '\n');
Nit:
You could include the +2 into the arg of strchrnul,
such that you can drop the braces.
You're right. With or without braces,
eol = strchrnul(p + 2, '\n');
would be easier to understand (I do not know offhand if the value of p
matters after this part, as I am responding from GMail Web UI without
access to the wider context in the source, though).
Heh, good point, I did not think it through apparently. `p` matters.