diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-01-30 15:13:37 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-02-05 00:38:41 -0800 |
commit | c607aaa2f05b4dc38a6573f44b6f71db05dd8b39 (patch) | |
tree | 4e72cf897716e85d208d8ae80bdd145867897ce9 /builtin-apply.c | |
parent | ee810b715912347775fa06a0d5b16092b4908d66 (diff) | |
download | git-c607aaa2f05b4dc38a6573f44b6f71db05dd8b39.tar.gz git-c607aaa2f05b4dc38a6573f44b6f71db05dd8b39.tar.xz |
builtin-apply.c: pass ws_rule down to match_fragment()
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>
Diffstat (limited to 'builtin-apply.c')
-rw-r--r-- | builtin-apply.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/builtin-apply.c b/builtin-apply.c index 2af625a43..5f3c047f2 100644 --- a/builtin-apply.c +++ b/builtin-apply.c @@ -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; @@ -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; @@ -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; @@ -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; |