| 1694 | } |
| 1695 | |
| 1696 | static void emit_add_line(struct emit_callback *ecbdata, |
| 1697 | const char *line, int len) |
| 1698 | { |
| 1699 | unsigned flags = WSEH_NEW | ecbdata->ws_rule; |
| 1700 | if (new_blank_line_at_eof(ecbdata, line, len)) |
| 1701 | flags |= DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF; |
| 1702 | |
| 1703 | emit_diff_symbol(ecbdata->opt, DIFF_SYMBOL_PLUS, line, len, flags); |
| 1704 | } |
| 1705 | |
| 1706 | static void emit_del_line(struct emit_callback *ecbdata, |
| 1707 | const char *line, int len) |
no test coverage detected