strvec: convert builtin/ callers away from argv_array name
We eventually want to drop the argv_array name and just use strvec consistently. There's no particular reason we have to do it all at once, or care about interactions between converted and unconverted bits. Because of our preprocessor compat layer, the names are interchangeable to the compiler (so even a definition and declaration using different names is OK). This patch converts all of the files in builtin/ to keep the diff to a manageable size. The conversion was done purely mechanically with: git ls-files '*.c' '*.h' | xargs perl -i -pe ' s/ARGV_ARRAY/STRVEC/g; s/argv_array/strvec/g; ' and then selectively staging files with "git add builtin/". We'll deal with any indentation/style fallouts separately. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
2745b6b450
commit
22f9b7f3f5
@ -1005,15 +1005,15 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
|
||||
return 0;
|
||||
|
||||
if (use_editor) {
|
||||
struct argv_array env = ARGV_ARRAY_INIT;
|
||||
struct strvec env = STRVEC_INIT;
|
||||
|
||||
argv_array_pushf(&env, "GIT_INDEX_FILE=%s", index_file);
|
||||
strvec_pushf(&env, "GIT_INDEX_FILE=%s", index_file);
|
||||
if (launch_editor(git_path_commit_editmsg(), NULL, env.argv)) {
|
||||
fprintf(stderr,
|
||||
_("Please supply the message using either -m or -F option.\n"));
|
||||
exit(1);
|
||||
}
|
||||
argv_array_clear(&env);
|
||||
strvec_clear(&env);
|
||||
}
|
||||
|
||||
if (!no_verify &&
|
||||
|
Reference in New Issue
Block a user