Add commit->msg_encoding, allocate msg dynamicly.

This commit is contained in:
Jonathan Bastien-Filiatrault
2007-10-26 18:09:06 -04:00
parent 72ede12551
commit 3845e177e4
4 changed files with 10 additions and 1 deletions

6
cgit.h
View File

@ -48,6 +48,11 @@
#define TM_MONTH (TM_YEAR / 12.0)
/*
* Default encoding
*/
#define PAGE_ENCODING "UTF-8"
typedef void (*configfn)(const char *name, const char *value);
typedef void (*filepair_fn)(struct diff_filepair *pair);
typedef void (*linediff_fn)(char *line, int len);
@ -90,6 +95,7 @@ struct commitinfo {
unsigned long committer_date;
char *subject;
char *msg;
char *msg_encoding;
};
struct taginfo {