about summary refs log tree commit diff
path: root/cgit.h
diff options
context:
space:
mode:
authorJonathan Bastien-Filiatrault <joe@x2a.org>2007-10-26 18:09:06 -0400
committerJonathan Bastien-Filiatrault <joe@x2a.org>2007-11-05 18:13:30 -0500
commit3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b (patch)
tree548671b6339e9a1a252ded4d534f11bfcd560043 /cgit.h
parentDon't show the the branch selector button if javascript is enabled (diff)
downloadcgit-pink-3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b.tar.gz
cgit-pink-3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b.zip
Add commit->msg_encoding, allocate msg dynamicly.
Diffstat (limited to 'cgit.h')
-rw-r--r--cgit.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index 163f355..6c7a941 100644
--- a/cgit.h
+++ b/cgit.h
@@ -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 {