Upgrade patch to detect hunks that start after a false start.
authorRob Landley <rob@landley.net>
Thu, 23 Oct 2008 21:44:30 +0000 (16:44 -0500)
committerRob Landley <rob@landley.net>
Thu, 23 Oct 2008 21:44:30 +0000 (16:44 -0500)
commitbdf037ff5e1b933d624ac74c62c5c1eb14464737
tree08ff9c1bbe87165fc724403c9254bd02cdefabd2
parentcebe48aebfbb9378715db1ef98e0a8bcd1a39998
Upgrade patch to detect hunks that start after a false start.

Imagine a hunk that starts with a blank line, but the site to patch starts
with two blank lines.  Before we'd read the first blank line, think it was the
start of the hunk and buffer it, read the second blank line, notice that it
didn't match the second line of the hunk, and discard _both_ buffered lines of
context (writing them to the output file) without checking that one of the
later context lines might have been the real start of the hunk.

Make it re-check the rest of the buffered context for matches each time it
discards a line of buffered context.
lib/lib.h
lib/llist.c
toys/patch.c