Move "show_all_errors = 1" to setup_unpack_trees_porcelain()
Not only this makes the code clearer since setting up the porcelain error message is meant to work with show_all_errors, but this fixes a call to setup_unpack_trees_porcelain() in git_merge_trees() which did not set show_all_errors. add_rejected_path() used to double-check whether it was running in plumbing mode. This check was ineffective since it was setting show_all_errors too late for traverse_trees() to see it, and is made useless by this patch. Remove it. Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
e294030fe8
commit
5e65ee35dd
@@ -24,7 +24,7 @@ enum unpack_trees_error_types {
|
||||
|
||||
/*
|
||||
* Sets the list of user-friendly error messages to be used by the
|
||||
* command "cmd" (either merge or checkout)
|
||||
* command "cmd" (either merge or checkout), and show_all_errors to 1.
|
||||
*/
|
||||
void setup_unpack_trees_porcelain(struct unpack_trees_options *opts,
|
||||
const char *cmd);
|
||||
|
||||
Reference in New Issue
Block a user