mirror of
https://git.zx2c4.com/cgit/
synced 2024-11-04 06:00:44 +00:00
ad230267f8
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>
10 lines
261 B
C
10 lines
261 B
C
#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,
|
|
int commit_graph);
|
|
extern void show_commit_decorations(struct commit *commit);
|
|
|
|
#endif /* UI_LOG_H */
|