summaryrefslogtreecommitdiff
path: root/log-tree.c
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2006-05-05 02:31:29 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-05-05 21:11:59 (GMT)
commit8ac80a5701780547404523a84f4b1ae67bfa6823 (patch)
tree3e395c7899b82367cf45686dd8ae2fd553c05ae6 /log-tree.c
parent596524b33d50e47e2375cec9e00aff59f0e8278b (diff)
downloadgit-8ac80a5701780547404523a84f4b1ae67bfa6823.zip
git-8ac80a5701780547404523a84f4b1ae67bfa6823.tar.gz
git-8ac80a5701780547404523a84f4b1ae67bfa6823.tar.bz2
Teach fmt-patch about --keep-subject
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'log-tree.c')
-rw-r--r--log-tree.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/log-tree.c b/log-tree.c
index 1ca529d..4a3cd67 100644
--- a/log-tree.c
+++ b/log-tree.c
@@ -46,8 +46,11 @@ void show_log(struct rev_info *opt, struct log_info *log, const char *sep)
"Subject: [PATCH %d/%d] ",
opt->nr, opt->total);
subject = buffer;
- } else
+ } else if (opt->total == 0)
subject = "Subject: [PATCH] ";
+ else
+ subject = "Subject: ";
+
printf("From %s Thu Apr 7 15:13:13 2005\n",
sha1_to_hex(commit->object.sha1));
} else {