| 1017 | } |
| 1018 | |
| 1019 | static int gitdiff_newmode(struct gitdiff_data *state, |
| 1020 | const char *line, |
| 1021 | struct patch *patch) |
| 1022 | { |
| 1023 | return parse_mode_line(line, state->patch_input_file, state->linenr, |
| 1024 | &patch->new_mode); |
| 1025 | } |
| 1026 | |
| 1027 | static int gitdiff_delete(struct gitdiff_data *state, |
| 1028 | const char *line, |
no test coverage detected