mirror of
https://github.com/git/git.git
synced 2026-03-15 03:00:07 +01:00
Merge branches 'jc/archive' and 'jk/diff' into next
* jc/archive: git-archive: inline default_parse_extra() * jk/diff: wt-status: remove extraneous newline from 'deleted:' output
This commit is contained in:
@@ -145,17 +145,6 @@ void parse_treeish_arg(const char **argv, struct archiver_args *ar_args,
|
||||
ar_args->time = archive_time;
|
||||
}
|
||||
|
||||
static const char *default_parse_extra(struct archiver *ar,
|
||||
const char **argv)
|
||||
{
|
||||
static char msg[64];
|
||||
|
||||
snprintf(msg, sizeof(msg) - 4, "'%s' format does not handle %s",
|
||||
ar->name, *argv);
|
||||
|
||||
return strcat(msg, "...");
|
||||
}
|
||||
|
||||
int parse_archive_args(int argc, const char **argv, struct archiver *ar)
|
||||
{
|
||||
const char *extra_argv[MAX_EXTRA_ARGS];
|
||||
@@ -208,7 +197,8 @@ int parse_archive_args(int argc, const char **argv, struct archiver *ar)
|
||||
|
||||
if (extra_argc) {
|
||||
if (!ar->parse_extra)
|
||||
die("%s", default_parse_extra(ar, extra_argv));
|
||||
die("'%s' format does not handle %s",
|
||||
ar->name, extra_argv[0]);
|
||||
ar->args.extra = ar->parse_extra(extra_argc, extra_argv);
|
||||
}
|
||||
ar->args.verbose = verbose;
|
||||
|
||||
@@ -78,7 +78,7 @@ static void wt_status_print_filepair(int t, struct diff_filepair *p)
|
||||
p->one->path, p->two->path);
|
||||
break;
|
||||
case DIFF_STATUS_DELETED:
|
||||
color_printf_ln(c, "deleted: %s", p->one->path); break;
|
||||
color_printf(c, "deleted: %s", p->one->path); break;
|
||||
case DIFF_STATUS_MODIFIED:
|
||||
color_printf(c, "modified: %s", p->one->path); break;
|
||||
case DIFF_STATUS_RENAMED:
|
||||
|
||||
Reference in New Issue
Block a user