| 1893 | static const char combined_commit_msg_fmt[] = N_("This is a combination of %d commits."); |
| 1894 | |
| 1895 | static int is_fixup_flag(enum todo_command command, unsigned flag) |
| 1896 | { |
| 1897 | return command == TODO_FIXUP && ((flag & TODO_REPLACE_FIXUP_MSG) || |
| 1898 | (flag & TODO_EDIT_FIXUP_MSG)); |
| 1899 | } |
| 1900 | |
| 1901 | /* |
| 1902 | * Wrapper around strbuf_add_commented_lines() which avoids double |
no outgoing calls
no test coverage detected