diff options
| author | Phillip Wood <phillip.wood@dunelm.org.uk> | 2024-05-30 13:43:49 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-05-30 10:02:56 -0700 |
| commit | 0c26738aa4a8256b40a46476c2433c03a562124f (patch) | |
| tree | e1b2acc94ea099cda89ace6aa67e27145a34e7e5 /sequencer.h | |
| parent | The fifteenth batch (diff) | |
| download | git-0c26738aa4a8256b40a46476c2433c03a562124f.tar.gz git-0c26738aa4a8256b40a46476c2433c03a562124f.zip | |
rebase -i: pass struct replay_opts to parse_insn_line()
This new parameter will be used in the next commit. As adding the
parameter requires quite a few changes to plumb it through the call
chain these are separated into their own commit to avoid cluttering up
the next commit with incidental changes.
Signed-off-by: Phillip Wood <phillip.wood@dunelm.org.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sequencer.h')
| -rw-r--r-- | sequencer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sequencer.h b/sequencer.h index 437eabd38a..33943e5ed2 100644 --- a/sequencer.h +++ b/sequencer.h @@ -137,8 +137,8 @@ struct todo_list { .buf = STRBUF_INIT, \ } -int todo_list_parse_insn_buffer(struct repository *r, char *buf, - struct todo_list *todo_list); +int todo_list_parse_insn_buffer(struct repository *r, struct replay_opts *opts, + char *buf, struct todo_list *todo_list); int todo_list_write_to_file(struct repository *r, struct todo_list *todo_list, const char *file, const char *shortrevisions, const char *shortonto, int num, unsigned flags); |
