diff options
author | Nazri Ramliy <ayiehere@gmail.com> | 2010-06-19 09:37:33 +0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-06-20 21:44:01 -0700 |
commit | eb3005e274d6d342cd4766598d9210995b5dca0c (patch) | |
tree | 54c230b53efcb4c15ea9470359ed8e86780b49a7 /commit.h | |
parent | 049e98c875682de2f5638b83e91bfbef5cfbf521 (diff) | |
download | git-eb3005e274d6d342cd4766598d9210995b5dca0c.tar.gz git-eb3005e274d6d342cd4766598d9210995b5dca0c.tar.xz |
commit.h: add 'type' to struct name_decoration
This allows for semantically better handling of decoration type.
Signed-off-by: Nazri Ramliy <ayiehere@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -28,6 +28,7 @@ extern const char *commit_type; extern struct decoration name_decoration; struct name_decoration { struct name_decoration *next; + int type; char name[1]; }; |