Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-05-06 21:50:32 +0400
committerJunio C Hamano <gitster@pobox.com>2011-05-06 21:50:32 +0400
commit2190a43c42a049d75344a381f3c8d947876c997b (patch)
treed4b13f587a30d5a4647bdbde192dee9c354be38b /builtin/blame.c
parentace8ebbcf5f07a5519cbeb0ae0571d8b40222e34 (diff)
parentc01bd5a29f38e4e9fd5c03f3e1e84b88c392dd6f (diff)
Merge branch 'js/blame-parsename'
* js/blame-parsename: t/annotate-tests: Use echo & cat instead of sed blame: tolerate bogus e-mail addresses a bit better
Diffstat (limited to 'builtin/blame.c')
-rw-r--r--builtin/blame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/blame.c b/builtin/blame.c
index 4639788178..4242e4b513 100644
--- a/builtin/blame.c
+++ b/builtin/blame.c
@@ -1378,7 +1378,7 @@ static void get_ac_line(const char *inbuf, const char *what,
timepos = tmp;
*tmp = 0;
- while (person < tmp && *tmp != ' ')
+ while (person < tmp && !(*tmp == ' ' && tmp[1] == '<'))
tmp--;
if (tmp <= person)
return;