From eb3005e274d6d342cd4766598d9210995b5dca0c Mon Sep 17 00:00:00 2001 From: Nazri Ramliy Date: Sat, 19 Jun 2010 09:37:33 +0800 Subject: [PATCH] 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 --- commit.h | 1 + 1 file changed, 1 insertion(+) diff --git a/commit.h b/commit.h index 6ef88dcf45..ba818fccbe 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]; };