Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-10-06 23:40:12 +0300
committerJunio C Hamano <gitster@pobox.com>2021-10-06 23:40:12 +0300
commit5a5ea9763c9fcce82e60a2183e8ffc4989a291d5 (patch)
tree75f25f598171e5d0f20478953be176926f7b9950 /sequencer.h
parentb39b0e1a829fc085c779f39f53d974b619494f8a (diff)
parent2b88fe0603a93314b96f94b22e197b7b1b838c80 (diff)
Merge branch 'pw/rebase-reread-todo-after-editing'
The code to re-read the edited todo list in "git rebase -i" was made more robust. * pw/rebase-reread-todo-after-editing: rebase: fix todo-list rereading sequencer.c: factor out a function
Diffstat (limited to 'sequencer.h')
-rw-r--r--sequencer.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sequencer.h b/sequencer.h
index 2088344cb3..b4d0305606 100644
--- a/sequencer.h
+++ b/sequencer.h
@@ -116,7 +116,6 @@ struct todo_list {
struct todo_item *items;
int nr, alloc, current;
int done_nr, total_nr;
- struct stat_data stat;
};
#define TODO_LIST_INIT { STRBUF_INIT }