diff options
Diffstat (limited to 'revision.h')
-rw-r--r-- | revision.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/revision.h b/revision.h index a91dd3d5d9..bc18487d6f 100644 --- a/revision.h +++ b/revision.h @@ -71,11 +71,19 @@ struct rev_info { const char *def; struct pathspec prune_data; + /* + * Whether the arguments parsed by setup_revisions() included any + * "input" revisions that might still have yielded an empty pending + * list (e.g., patterns like "--all" or "--glob"). + */ + int rev_input_given; + /* topo-sort */ enum rev_sort_order sort_order; - unsigned int early_output:1, - ignore_missing:1, + unsigned int early_output; + + unsigned int ignore_missing:1, ignore_missing_links:1; /* Traversal flags */ |