diff options
author | Alban Gruin <alban.gruin@gmail.com> | 2019-03-05 20:18:05 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-03-07 01:17:57 +0100 |
commit | ed35d18841130fee0109cbe40b659275a3f78cc9 (patch) | |
tree | 528e12705e2e06abf5ed26d6309cbf2d504cdd79 /sequencer.h | |
parent | sequencer: use edit_todo_list() in complete_action() (diff) | |
download | git-ed35d18841130fee0109cbe40b659275a3f78cc9.tar.xz git-ed35d18841130fee0109cbe40b659275a3f78cc9.zip |
rebase--interactive: move transform_todo_file()
As transform_todo_file() is only needed inside of
rebase--interactive.c for `rebase -p', it is moved there from
sequencer.c.
The parameter r (repository) is dropped along the way.
Signed-off-by: Alban Gruin <alban.gruin@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sequencer.h')
-rw-r--r-- | sequencer.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sequencer.h b/sequencer.h index 195891a267..7cca49eff2 100644 --- a/sequencer.h +++ b/sequencer.h @@ -143,7 +143,6 @@ int sequencer_remove_state(struct replay_opts *opts); int sequencer_make_script(struct repository *r, struct strbuf *out, int argc, const char **argv, unsigned flags); -int transform_todo_file(struct repository *r, unsigned flags); void todo_list_add_exec_commands(struct todo_list *todo_list, struct string_list *commands); int check_todo_list_from_file(struct repository *r); |