summaryrefslogtreecommitdiff
path: root/commit.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-03-29 23:05:39 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-03-30 19:52:26 (GMT)
commitfe37a9c586a65943e1bca327a1bbe1ca4a3d3023 (patch)
treefdb9dc30ad33ead3e710560a3c04e2cfee49a2e3 /commit.h
parent0893eec85fca0f76039a96cbbcd3592ff8571c24 (diff)
downloadgit-fe37a9c586a65943e1bca327a1bbe1ca4a3d3023.zip
git-fe37a9c586a65943e1bca327a1bbe1ca4a3d3023.tar.gz
git-fe37a9c586a65943e1bca327a1bbe1ca4a3d3023.tar.bz2
pretty: allow tweaking tabwidth in --expand-tabs
When the local convention of the project is to use tab width that is not 8, it may make sense to allow "git log --expand-tabs=<n>" to tweak the output to match it. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r--commit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit.h b/commit.h
index a7ef682..b06db4d 100644
--- a/commit.h
+++ b/commit.h
@@ -147,7 +147,7 @@ struct pretty_print_context {
int preserve_subject;
struct date_mode date_mode;
unsigned date_mode_explicit:1;
- unsigned expand_tabs_in_log:1;
+ int expand_tabs_in_log;
int need_8bit_cte;
char *notes_message;
struct reflog_walk_info *reflog_info;