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