The USE_PAGER was unnecessary as git-blame/git-annotate specifically setup the pager when --incremental is not specified. Prior to this patch git annotate somefileinasubdirectory.c would fail (while git blame somefileinasubdirectory.c would succeed). Signed-off-by: Andrew Ruder <andy@xxxxxxxxxxx> --- git.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/git.c b/git.c index f200907..eeb2c0c 100644 --- a/git.c +++ b/git.c @@ -225,7 +225,7 @@ static void handle_internal_command(int argc, const char **argv, char **envp) int option; } commands[] = { { "add", cmd_add, RUN_SETUP | NOT_BARE }, - { "annotate", cmd_annotate, USE_PAGER }, + { "annotate", cmd_annotate, RUN_SETUP }, { "apply", cmd_apply }, { "archive", cmd_archive }, { "blame", cmd_blame, RUN_SETUP }, -- 1.5.2.14.g45bde-dirty - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html