| 1139 | } |
| 1140 | |
| 1141 | void wt_status_append_cut_line(struct strbuf *buf) |
| 1142 | { |
| 1143 | const char *explanation = _("Do not modify or remove the line above.\nEverything below it will be ignored."); |
| 1144 | |
| 1145 | strbuf_commented_addf(buf, comment_line_str, "%s", cut_line); |
| 1146 | strbuf_add_commented_lines(buf, explanation, strlen(explanation), comment_line_str); |
| 1147 | } |
| 1148 | |
| 1149 | void wt_status_add_cut_line(struct wt_status *s) |
| 1150 | { |
no test coverage detected