Skip to content

Commit

Permalink
builtin-apply.c: pass ws_rule down to match_fragment()
Browse files Browse the repository at this point in the history
This is necessary to allow match_fragment() to attempt a match
with a preimage that is based on a version before whitespace
errors were fixed.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Feb 5, 2008
1 parent ee810b7 commit c607aaa
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions builtin-apply.c
Original file line number Diff line number Diff line change
Expand Up @@ -1614,6 +1614,7 @@ static int match_fragment(struct image *img,
struct image *postimage,
unsigned long try,
int try_lno,
unsigned ws_rule,
int match_beginning, int match_end)
{
int i;
Expand Down Expand Up @@ -1656,6 +1657,7 @@ static int find_pos(struct image *img,
struct image *preimage,
struct image *postimage,
int line,
unsigned ws_rule,
int match_beginning, int match_end)
{
int i;
Expand Down Expand Up @@ -1691,7 +1693,7 @@ static int find_pos(struct image *img,

for (i = 0; ; i++) {
if (match_fragment(img, preimage, postimage,
try, try_lno,
try, try_lno, ws_rule,
match_beginning, match_end))
return try_lno;

Expand Down Expand Up @@ -1930,8 +1932,8 @@ static int apply_one_fragment(struct image *img, struct fragment *frag,

for (;;) {

applied_pos = find_pos(img, &preimage, &postimage,
pos, match_beginning, match_end);
applied_pos = find_pos(img, &preimage, &postimage, pos,
ws_rule, match_beginning, match_end);

if (applied_pos >= 0)
break;
Expand Down

0 comments on commit c607aaa

Please sign in to comment.