Git fork

annotate: remove usage of the_repository global

As part of the effort to get rid of global state due to the_repository
variable, remove the the_repository with the repository argument that
gets passed down through the builtin function.

Signed-off-by: John Cai <johncai86@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

John Cai and committed by
Junio C Hamano
ebe8f4b6 5db948d4

+2 -3
+2 -3
builtin/annotate.c
··· 4 * Copyright (C) 2006 Ryan Anderson 5 */ 6 7 - #define USE_THE_REPOSITORY_VARIABLE 8 #include "git-compat-util.h" 9 #include "builtin.h" 10 #include "strvec.h" ··· 12 int cmd_annotate(int argc, 13 const char **argv, 14 const char *prefix, 15 - struct repository *repo UNUSED) 16 { 17 struct strvec args = STRVEC_INIT; 18 int i; ··· 23 strvec_push(&args, argv[i]); 24 } 25 26 - return cmd_blame(args.nr, args.v, prefix, the_repository); 27 }
··· 4 * Copyright (C) 2006 Ryan Anderson 5 */ 6 7 #include "git-compat-util.h" 8 #include "builtin.h" 9 #include "strvec.h" ··· 11 int cmd_annotate(int argc, 12 const char **argv, 13 const char *prefix, 14 + struct repository *repo) 15 { 16 struct strvec args = STRVEC_INIT; 17 int i; ··· 22 strvec_push(&args, argv[i]); 23 } 24 25 + return cmd_blame(args.nr, args.v, prefix, repo); 26 }