Does the current fixup chain contain a squash command? */
| 1921 | |
| 1922 | /* Does the current fixup chain contain a squash command? */ |
| 1923 | static int seen_squash(struct replay_ctx *ctx) |
| 1924 | { |
| 1925 | return starts_with(ctx->current_fixups.buf, "squash") || |
| 1926 | strstr(ctx->current_fixups.buf, "\nsquash"); |
| 1927 | } |
| 1928 | |
| 1929 | static void update_comment_bufs(struct strbuf *buf1, struct strbuf *buf2, int n) |
| 1930 | { |
no test coverage detected