X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=revision.h;h=83f364ace240ce22d577f65e7a3f60bf20ccdf2f;hb=af9a01e1c2f6a8814b817eb7f3d78814389a3212;hp=201bd97c58d7852d07560e5f79c7dcd850803dc7;hpb=885cf808998c4e6d685c669a44f02b37f6965fd9;p=git.git diff --git a/revision.h b/revision.h index 201bd97c5..83f364ace 100644 --- a/revision.h +++ b/revision.h @@ -66,7 +66,8 @@ struct rev_info { /* Format info */ unsigned int shown_one:1, abbrev_commit:1, - use_terminator:1; + use_terminator:1, + missing_newline:1; enum date_mode date_mode; const char **ignore_packed; /* pretend objects in these are unpacked */ @@ -89,6 +90,9 @@ struct rev_info { /* Filter by commit log message */ struct grep_opt *grep_filter; + /* Display history graph */ + struct git_graph *graph; + /* special limits */ int skip_count; int max_count; @@ -107,6 +111,8 @@ struct rev_info { #define REV_TREE_DIFFERENT 2 /* revision.c */ +void read_revisions_from_stdin(struct rev_info *revs); + typedef void (*show_early_output_fn_t)(struct rev_info *, struct commit_list *); volatile show_early_output_fn_t show_early_output;