From: Nazri Ramliy Date: Sat, 19 Jun 2010 01:37:33 +0000 (+0800) Subject: commit.h: add 'type' to struct name_decoration X-Git-Tag: v1.7.2-rc1~2^2~4 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=eb3005e274d6d342cd4766598d9210995b5dca0c;p=git.git commit.h: add 'type' to struct name_decoration This allows for semantically better handling of decoration type. Signed-off-by: Nazri Ramliy Signed-off-by: Junio C Hamano --- diff --git a/commit.h b/commit.h index 6ef88dcf4..ba818fccb 100644 --- a/commit.h +++ b/commit.h @@ -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]; };