Signed-off-by: Christian Couder <chrisc...@tuxfamily.org>
---
 apply.h         |  3 +++
 builtin/apply.c | 11 ++++-------
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/apply.h b/apply.h
index 35d4d15..3df0128 100644
--- a/apply.h
+++ b/apply.h
@@ -129,4 +129,7 @@ extern int parse_ignorewhitespace_option(struct apply_state 
*state,
 extern int init_apply_state(struct apply_state *state, const char *prefix);
 extern int check_apply_state(struct apply_state *state, int force_apply);
 
+#define APPLY_OPT_INACCURATE_EOF       (1<<0)
+#define APPLY_OPT_RECOUNT              (1<<1)
+
 #endif
diff --git a/builtin/apply.c b/builtin/apply.c
index 5910c5c..1c53c7e 100644
--- a/builtin/apply.c
+++ b/builtin/apply.c
@@ -4443,9 +4443,6 @@ static int write_out_results(struct apply_state *state, 
struct patch *list)
        return errs;
 }
 
-#define INACCURATE_EOF (1<<0)
-#define RECOUNT                (1<<1)
-
 /*
  * Try to apply a patch.
  *
@@ -4473,8 +4470,8 @@ static int apply_patch(struct apply_state *state,
                int nr;
 
                patch = xcalloc(1, sizeof(*patch));
-               patch->inaccurate_eof = !!(options & INACCURATE_EOF);
-               patch->recount =  !!(options & RECOUNT);
+               patch->inaccurate_eof = !!(options & APPLY_OPT_INACCURATE_EOF);
+               patch->recount =  !!(options & APPLY_OPT_RECOUNT);
                nr = parse_chunk(state, buf.buf + offset, buf.len - offset, 
patch);
                if (nr < 0) {
                        free_patch(patch);
@@ -4752,10 +4749,10 @@ int cmd_apply(int argc, const char **argv, const char 
*prefix)
                OPT__VERBOSE(&state.apply_verbosely, N_("be verbose")),
                OPT_BIT(0, "inaccurate-eof", &options,
                        N_("tolerate incorrectly detected missing new-line at 
the end of file"),
-                       INACCURATE_EOF),
+                       APPLY_OPT_INACCURATE_EOF),
                OPT_BIT(0, "recount", &options,
                        N_("do not trust the line counts in the hunk headers"),
-                       RECOUNT),
+                       APPLY_OPT_RECOUNT),
                { OPTION_CALLBACK, 0, "directory", &state, N_("root"),
                        N_("prepend <root> to all filenames"),
                        0, apply_option_parse_directory },
-- 
2.8.1.300.g5fed0c0

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to