1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-20 02:56:12 +02:00

git-annotate: no need to exec blame; it is built-in now.

This commit is contained in:
Junio C Hamano 2006-11-10 13:36:44 -08:00
parent 368c2ac249
commit a19f901d9f

View File

@ -4,7 +4,7 @@
* Copyright (C) 2006 Ryan Anderson
*/
#include "git-compat-util.h"
#include "exec_cmd.h"
#include "builtin.h"
int cmd_annotate(int argc, const char **argv, const char *prefix)
{
@ -20,6 +20,6 @@ int cmd_annotate(int argc, const char **argv, const char *prefix)
}
nargv[argc + 1] = NULL;
return execv_git_cmd(nargv);
return cmd_blame(argc + 1, nargv, prefix);
}