diff options
author | Linus Torvalds <torvalds@osdl.org> | 2006-02-27 08:54:36 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-27 11:10:16 -0800 |
commit | d9a83684c473e04c61f0060c4926d20f8183f7b6 (patch) | |
tree | 09cfb3bda4137a5376477fc6659e933fa4657cf4 /revision.h | |
parent | d9cfb964c7a59a39711da12e56563e10aa388331 (diff) | |
download | git-d9a83684c473e04c61f0060c4926d20f8183f7b6.tar.gz git-d9a83684c473e04c61f0060c4926d20f8183f7b6.tar.xz |
Splitting rev-list into revisions lib, end of beginning.
This makes the rewrite easier to validate in that revision flag
parsing and warlking part are now all in rev_info structure.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'revision.h')
-rw-r--r-- | revision.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/revision.h b/revision.h index 5170ac425..a22f19851 100644 --- a/revision.h +++ b/revision.h @@ -21,7 +21,9 @@ struct rev_info { tag_objects:1, tree_objects:1, blob_objects:1, - edge_hint:1; + edge_hint:1, + limited:1, + unpacked:1; /* special limits */ int max_count; |