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>
This commit is contained in:
Nazri Ramliy 2010-06-19 09:37:33 +08:00 коммит произвёл Junio C Hamano
Родитель 049e98c875
Коммит eb3005e274
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -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];
};