| 631 | } |
| 632 | |
| 633 | const char *skip_blank_lines(const char *msg) |
| 634 | { |
| 635 | for (;;) { |
| 636 | int linelen = get_one_line(msg); |
| 637 | int ll = linelen; |
| 638 | if (!linelen) |
| 639 | break; |
| 640 | if (!is_blank_line(msg, &ll)) |
| 641 | break; |
| 642 | msg += linelen; |
| 643 | } |
| 644 | return msg; |
| 645 | } |
| 646 | |
| 647 | static void add_merge_info(const struct pretty_print_context *pp, |
| 648 | struct strbuf *sb, const struct commit *commit) |
no test coverage detected