about summary refs log tree commit diff stats
path: root/cgit.h
diff options
context:
space:
mode:
Diffstat (limited to 'cgit.h')
-rw-r--r--cgit.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/cgit.h b/cgit.h index 519d2af..e200a06 100644 --- a/cgit.h +++ b/cgit.h
@@ -53,7 +53,7 @@ typedef void (*filepair_fn)(struct diff_filepair *pair);
53typedef void (*linediff_fn)(char *line, int len); 53typedef void (*linediff_fn)(char *line, int len);
54 54
55typedef enum { 55typedef enum {
56 ABOUT, COMMIT, SOURCE 56 ABOUT, COMMIT, SOURCE, EMAIL
57} filter_type; 57} filter_type;
58 58
59struct cgit_filter { 59struct cgit_filter {
@@ -99,6 +99,7 @@ struct cgit_repo {
99 struct cgit_filter *about_filter; 99 struct cgit_filter *about_filter;
100 struct cgit_filter *commit_filter; 100 struct cgit_filter *commit_filter;
101 struct cgit_filter *source_filter; 101 struct cgit_filter *source_filter;
102 struct cgit_filter *email_filter;
102 struct string_list submodules; 103 struct string_list submodules;
103}; 104};
104 105
@@ -250,6 +251,7 @@ struct cgit_config {
250 struct cgit_filter *about_filter; 251 struct cgit_filter *about_filter;
251 struct cgit_filter *commit_filter; 252 struct cgit_filter *commit_filter;
252 struct cgit_filter *source_filter; 253 struct cgit_filter *source_filter;
254 struct cgit_filter *email_filter;
253}; 255};
254 256
255struct cgit_page { 257struct cgit_page {