diff options
author | Kent Overstreet <kmo@daterainc.com> | 2014-03-22 18:05:42 -0700 |
---|---|---|
committer | Kent Overstreet <kmo@daterainc.com> | 2014-03-22 18:05:42 -0700 |
commit | 03de8b68f17396d7710d2584c6a6fc786c26279f (patch) | |
tree | 4c2b9125786e3ca99f7d208d62eeca1fdf4abb97 /ui-log.h | |
parent | 88b93113235452d47e7ce474689327c43e64b843 (diff) |
This lets you do the equivalent of
git log ^ref1 ref2
by adding an id2 parameter to a log url
Diffstat (limited to 'ui-log.h')
-rw-r--r-- | ui-log.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,8 +1,8 @@ #ifndef UI_LOG_H #define UI_LOG_H -extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, - char *pattern, char *path, int pager, +extern void cgit_print_log(const char *tip, const char *from, int ofs, int cnt, + char *grep, char *pattern, char *path, int pager, int commit_graph, int commit_sort); extern void show_commit_decorations(struct commit *commit); |