提交 621c53cc 编写于 作者: L Linus Torvalds 提交者: Junio C Hamano

builtin-diff: \No newline at end of file.

Signed-off-by: NJunio C Hamano <junkio@cox.net>
上级 3443546f
......@@ -31,14 +31,22 @@
int xdl_emit_diffrec(char const *rec, long size, char const *pre, long psize,
xdemitcb_t *ecb) {
mmbuffer_t mb[2];
mmbuffer_t mb[3];
int i;
mb[0].ptr = (char *) pre;
mb[0].size = psize;
mb[1].ptr = (char *) rec;
mb[1].size = size;
i = 2;
if (ecb->outf(ecb->priv, mb, 2) < 0) {
if (!size || rec[size-1] != '\n') {
mb[2].ptr = "\n\\ No newline at end of file\n";
mb[2].size = strlen(mb[2].ptr);
i = 3;
}
if (ecb->outf(ecb->priv, mb, i) < 0) {
return -1;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册