summaryrefslogtreecommitdiff
path: root/sequencer.h
diff options
context:
space:
mode:
authorAlban Gruin <alban.gruin@gmail.com>2019-03-05 20:17:56 +0100
committerJunio C Hamano <gitster@pobox.com>2019-03-07 09:17:57 +0900
commitd358fc286d1da690fb4acea629457faa9010944a (patch)
treeabcbac1254b5c2a693c1aad9bba24a10bce71a3c /sequencer.h
parentf2a04904be6584f1ec783ed5d3c425026bcf908f (diff)
downloadgit-d358fc286d1da690fb4acea629457faa9010944a.tar.gz
sequencer: make sequencer_make_script() write its script to a strbuf
This makes sequencer_make_script() write its script to a strbuf (ie. the buffer of a todo_list) instead of a FILE. This reduce the amount of read/write made by rebase interactive. 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.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/sequencer.h b/sequencer.h
index add50f04f1..e25f5151d3 100644
--- a/sequencer.h
+++ b/sequencer.h
@@ -142,9 +142,8 @@ int sequencer_remove_state(struct replay_opts *opts);
#define TODO_LIST_REBASE_COUSINS (1U << 4)
#define TODO_LIST_APPEND_TODO_HELP (1U << 5)
-int sequencer_make_script(struct repository *r, FILE *out, int argc,
- const char **argv,
- unsigned flags);
+int sequencer_make_script(struct repository *r, struct strbuf *out, int argc,
+ const char **argv, unsigned flags);
int sequencer_add_exec_commands(struct repository *r,
struct string_list *commands);