aboutsummaryrefslogtreecommitdiffstats
path: root/ui-log.h
diff options
context:
space:
mode:
authorJohan Herland <johan@herland.net>2010-11-15 18:39:52 +0100
committerLars Hjemli <hjemli@gmail.com>2010-11-16 08:18:37 +0100
commitad230267f8ecae6cb4f0da17d7a5f75ba38203e2 (patch)
treeb25cb32e8caf932b031691a5c85b827b847261c5 /ui-log.h
parentui-log: Colorize commit graph (diff)
downloadcgit-ad230267f8ecae6cb4f0da17d7a5f75ba38203e2.tar.xz
cgit-ad230267f8ecae6cb4f0da17d7a5f75ba38203e2.zip
ui-log: Line-wrap long commit subjects when showmsg is enabled
When showmsg is disabled ui-log truncates long commit subjects. This is good. However, the same is not desirable when showmsg is enabled, since you then end up with a truncated commit subject followed by the rest of the commit message below. Instead, when showmsg is enabled (and we're using all this space to display the entire commit message, anyway), line-wrap the commit subject instead of truncating it. Signed-off-by: Johan Herland <johan@herland.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-log.h')
-rw-r--r--ui-log.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui-log.h b/ui-log.h
index 6034055..d0cb779 100644
--- a/ui-log.h
+++ b/ui-log.h
@@ -2,7 +2,8 @@
#define UI_LOG_H
extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep,
- char *pattern, char *path, int pager);
+ char *pattern, char *path, int pager,
+ int commit_graph);
extern void show_commit_decorations(struct commit *commit);
#endif /* UI_LOG_H */