diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-12-27 14:58:13 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-12-27 14:58:13 -0800 |
commit | 6904f9aa5ba7666cdb5390733225e123fe25526b (patch) | |
tree | 7867aa393189903c8075c16abc35163f6de07243 /diff.h | |
parent | 604ada435b78a473baa6962a90def78ccb186c58 (diff) | |
parent | 0ea7d5b6f8e258fdec067edf1b136ed87c5670e5 (diff) | |
download | git-6904f9aa5ba7666cdb5390733225e123fe25526b.tar.gz |
Merge branch 'zk/difftool-counts'
Show the total number of paths and the number of paths shown so far
when "git difftool" prompts to launch an external diff tool, which
would give users some sense of progress.
* zk/difftool-counts:
diff.c: fix some recent whitespace style violations
difftool: display the number of files in the diff queue in the prompt
Diffstat (limited to 'diff.h')
-rw-r--r-- | diff.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -164,6 +164,8 @@ struct diff_options { diff_prefix_fn_t output_prefix; int output_prefix_length; void *output_prefix_data; + + int diff_path_counter; }; enum color_diff { |