Make git-mailinfo a builtin

[jc: with a bit of constness tightening]

Signed-off-by: Lukas Sandström <lukass@etek.chalmers.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Lukas Sandström
2006-06-13 22:21:50 +02:00
committed by Junio C Hamano
parent e690e84315
commit 34488e3c37
4 changed files with 61 additions and 46 deletions

3
git.c
View File

@ -180,7 +180,8 @@ static void handle_internal_command(int argc, const char **argv, char **envp)
{ "cat-file", cmd_cat_file },
{ "rev-parse", cmd_rev_parse },
{ "write-tree", cmd_write_tree },
{ "mailsplit", cmd_mailsplit }
{ "mailsplit", cmd_mailsplit },
{ "mailinfo", cmd_mailinfo }
};
int i;