mirror of
https://github.com/git/git.git
synced 2024-11-24 18:33:43 +08:00
sequencer.c: rework search for start of footer to improve clarity
This code sequence is somewhat difficult to read. Let's rewrite it and add some comments to improve clarity. Signed-off-by: Brandon Casey <drafnel@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
e8a1f5a2ae
commit
fa1727fb21
10
sequencer.c
10
sequencer.c
@ -1019,19 +1019,21 @@ int sequencer_pick_revisions(struct replay_opts *opts)
|
||||
|
||||
static int ends_rfc2822_footer(struct strbuf *sb, int ignore_footer)
|
||||
{
|
||||
int ch;
|
||||
int hit = 0;
|
||||
char ch, prev;
|
||||
int i, j, k;
|
||||
int len = sb->len - ignore_footer;
|
||||
int first = 1;
|
||||
const char *buf = sb->buf;
|
||||
|
||||
prev = '\0';
|
||||
for (i = len - 1; i > 0; i--) {
|
||||
if (hit && buf[i] == '\n')
|
||||
ch = buf[i];
|
||||
if (prev == '\n' && ch == '\n') /* paragraph break */
|
||||
break;
|
||||
hit = (buf[i] == '\n');
|
||||
prev = ch;
|
||||
}
|
||||
|
||||
/* advance to start of last paragraph */
|
||||
while (i < len - 1 && buf[i] == '\n')
|
||||
i++;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user