| 7699 | } |
| 7700 | |
| 7701 | void diff_addremove(struct diff_options *options, int addremove, unsigned mode, |
| 7702 | const struct object_id *oid, int oid_valid, |
| 7703 | const char *concatpath, unsigned dirty_submodule) |
| 7704 | { |
| 7705 | diff_queue_addremove(&diff_queued_diff, options, addremove, mode, oid, |
| 7706 | oid_valid, concatpath, dirty_submodule); |
| 7707 | } |
| 7708 | |
| 7709 | void diff_change(struct diff_options *options, |
| 7710 | unsigned old_mode, unsigned new_mode, |
no test coverage detected