diff options
author | Ren,Ai(B Scharfe <rene.scharfe@lsrfire.ath.cx> | 2007-01-28 15:25:55 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-28 11:00:57 -0800 |
commit | 4f0219a4c76a2ce963cf355f90f18c9c59036bca (patch) | |
tree | b72742ee6a735a3cfd3361dd021bd5b89162f6ba /builtin-blame.c | |
parent | 1b600e659abc7e409c9d830e332d3cef01062c1c (diff) | |
download | git-4f0219a4c76a2ce963cf355f90f18c9c59036bca.tar.gz |
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.c | 3 |
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) |