aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-05-27 15:54:06 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-29 11:17:43 -0700
commit09d9d1a648ecff1dd914224b3ee616b0486ec525 (patch)
treebe513b1aa4f61cdd15865bb00658597fdfb5b37c
parent903d475a0bcde34a03e462b56a77564252876483 (diff)
downloadgit-09d9d1a648ecff1dd914224b3ee616b0486ec525.tar.gz
git-09d9d1a648ecff1dd914224b3ee616b0486ec525.tar.xz
[PATCH] Remove final newline from the value of xfrm_msg variable.
This change makes the implementation of git-external-diff-script cleaner. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--diff.c6
-rw-r--r--git-external-diff-script2
2 files changed, 4 insertions, 4 deletions
diff --git a/diff.c b/diff.c
index 5031c7d68..f15eb08ef 100644
--- a/diff.c
+++ b/diff.c
@@ -141,7 +141,7 @@ static void builtin_diff(const char *name_a,
printf("new mode %s\n", temp[1].mode);
}
if (xfrm_msg && xfrm_msg[0])
- fputs(xfrm_msg, stdout);
+ puts(xfrm_msg);
if (strncmp(temp[0].mode, temp[1].mode, 3))
/* we do not run diff between different kind
@@ -622,7 +622,7 @@ static void diff_flush_patch(struct diff_filepair *p)
sprintf(msg_,
"similarity index %d%%\n"
"copy from %s\n"
- "copy to %s\n",
+ "copy to %s",
(int)(0.5 + p->score * 100.0/MAX_SCORE),
p->one->path, p->two->path);
msg = msg_;
@@ -631,7 +631,7 @@ static void diff_flush_patch(struct diff_filepair *p)
sprintf(msg_,
"similarity index %d%%\n"
"rename old %s\n"
- "rename new %s\n",
+ "rename new %s",
(int)(0.5 + p->score * 100.0/MAX_SCORE),
p->one->path, p->two->path);
msg = msg_;
diff --git a/git-external-diff-script b/git-external-diff-script
index 0d34b670b..137280ac7 100644
--- a/git-external-diff-script
+++ b/git-external-diff-script
@@ -59,7 +59,7 @@ then
echo "new mode $mode2"
if test "$xfrm_msg" != ""
then
- echo -n $xfrm_msg
+ echo "$xfrm_msg"
fi
fi
diff ${GIT_DIFF_OPTS-'-pu'} -L "a/$name1" -L "b/$name2" "$tmp1" "$tmp2"