Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRen,Ai(B Scharfe <rene.scharfe@lsrfire.ath.cx>2007-01-28 17:25:55 +0300
committerJunio C Hamano <junkio@cox.net>2007-01-28 22:00:57 +0300
commit4f0219a4c76a2ce963cf355f90f18c9c59036bca (patch)
treeb72742ee6a735a3cfd3361dd021bd5b89162f6ba /builtin-blame.c
parent1b600e659abc7e409c9d830e332d3cef01062c1c (diff)
git-blame --incremental: don't use pager
Starting a pager defeats the purpose of the incremental output mode. This changes git-blame to only paginate if --incremental was not given. git -p blame --incremental still starts the pager, though. Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-blame.c')
-rw-r--r--builtin-blame.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/builtin-blame.c b/builtin-blame.c
index 7a58ee303f..02bda5e196 100644
--- a/builtin-blame.c
+++ b/builtin-blame.c
@@ -1780,6 +1780,9 @@ int cmd_blame(int argc, const char **argv, const char *prefix)
argv[unk++] = arg;
}
+ if (!incremental)
+ setup_pager();
+
if (!blame_move_score)
blame_move_score = BLAME_DEFAULT_MOVE_SCORE;
if (!blame_copy_score)