Git.pm: add subroutines for commenting lines
[gitweb.git] / shortlog.h
index 6608ee80b08881146b2678dba3120a036b69cc28..5a326c68602610d856ac543b8bd034542d83f64b 100644 (file)
@@ -1,10 +1,10 @@
 #ifndef SHORTLOG_H
 #define SHORTLOG_H
 
-#include "path-list.h"
+#include "string-list.h"
 
 struct shortlog {
-       struct path_list list;
+       struct string_list list;
        int summary;
        int wrap_lines;
        int sort_by_number;
@@ -12,10 +12,12 @@ struct shortlog {
        int in1;
        int in2;
        int user_format;
+       int abbrev;
 
        char *common_repo_prefix;
        int email;
-       struct path_list mailmap;
+       struct string_list mailmap;
+       FILE *file;
 };
 
 void shortlog_init(struct shortlog *log);