Re: [PATCH 19/22] sequencer: support cleaning up commit messages

2016-09-01 Thread Jakub Narębski
Hello Johannes, W dniu 01.09.2016 o 15:56, Johannes Schindelin pisze: > On Thu, 1 Sep 2016, Jakub Narębski wrote: >> It's a pity that emulation of named parameters in C requires >> relying on designated inits from C99 >> >> typedef struct { >> double pressure, moles, temp; >> }

Re: [PATCH 19/22] sequencer: support cleaning up commit messages

2016-09-01 Thread Johannes Schindelin
Hi Kuba, On Thu, 1 Sep 2016, Jakub Narębski wrote: > W dniu 29.08.2016 o 10:06, Johannes Schindelin pisze: > > > @@ -781,7 +785,7 @@ static int do_pick_commit(enum todo_command command, > > struct commit *commit, > > } > > if (!opts->no_commit) > > res =

Re: [PATCH 19/22] sequencer: support cleaning up commit messages

2016-09-01 Thread Jakub Narębski
Hello Johannes, W dniu 29.08.2016 o 10:06, Johannes Schindelin pisze: > The sequencer_commit() function already knows how to amend commits, and > with this new option, it can also clean up commit messages (i.e. strip > out commented lines). This is needed to implement rebase -i's 'fixup' > and

[PATCH 19/22] sequencer: support cleaning up commit messages

2016-08-29 Thread Johannes Schindelin
The sequencer_commit() function already knows how to amend commits, and with this new option, it can also clean up commit messages (i.e. strip out commented lines). This is needed to implement rebase -i's 'fixup' and 'squash' commands as sequencer commands. Signed-off-by: Johannes Schindelin