get_patch_filename(): drop "just-numbers" hack
The function chooses from three operating modes (format using the subject, the commit, or just number) based on NULL-ness of two of its parameters, which is an ugly hack for sharing only a bit of code. Separate out the "just numbers" part out to the callers. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
021f2f4c1a
commit
38ec23ac89
@ -684,6 +684,9 @@ static int reopen_stdout(struct commit *commit, const char *subject,
|
|||||||
strbuf_addch(&filename, '/');
|
strbuf_addch(&filename, '/');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (rev->numbered_files)
|
||||||
|
strbuf_addf(&filename, "%d", rev->nr);
|
||||||
|
else
|
||||||
get_patch_filename(&filename, commit, subject, rev);
|
get_patch_filename(&filename, commit, subject, rev);
|
||||||
|
|
||||||
if (!quiet)
|
if (!quiet)
|
||||||
|
17
log-tree.c
17
log-tree.c
@ -307,21 +307,18 @@ void get_patch_filename(struct strbuf *buf,
|
|||||||
int nr = info->nr;
|
int nr = info->nr;
|
||||||
int suffix_len = strlen(suffix) + 1;
|
int suffix_len = strlen(suffix) + 1;
|
||||||
int start_len = buf->len;
|
int start_len = buf->len;
|
||||||
|
|
||||||
strbuf_addf(buf, commit || subject ? "%04d-" : "%d", nr);
|
|
||||||
if (commit || subject) {
|
|
||||||
int max_len = start_len + FORMAT_PATCH_NAME_MAX - suffix_len;
|
int max_len = start_len + FORMAT_PATCH_NAME_MAX - suffix_len;
|
||||||
struct pretty_print_context ctx = {0};
|
|
||||||
|
|
||||||
|
strbuf_addf(buf, "%04d-", nr);
|
||||||
if (subject)
|
if (subject)
|
||||||
strbuf_addstr(buf, subject);
|
strbuf_addstr(buf, subject);
|
||||||
else if (commit)
|
else if (commit) {
|
||||||
|
struct pretty_print_context ctx = {0};
|
||||||
format_commit_message(commit, "%f", buf, &ctx);
|
format_commit_message(commit, "%f", buf, &ctx);
|
||||||
|
}
|
||||||
if (max_len < buf->len)
|
if (max_len < buf->len)
|
||||||
strbuf_setlen(buf, max_len);
|
strbuf_setlen(buf, max_len);
|
||||||
strbuf_addstr(buf, suffix);
|
strbuf_addstr(buf, suffix);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void log_write_email_headers(struct rev_info *opt, struct commit *commit,
|
void log_write_email_headers(struct rev_info *opt, struct commit *commit,
|
||||||
@ -390,8 +387,10 @@ void log_write_email_headers(struct rev_info *opt, struct commit *commit,
|
|||||||
mime_boundary_leader, opt->mime_boundary);
|
mime_boundary_leader, opt->mime_boundary);
|
||||||
extra_headers = subject_buffer;
|
extra_headers = subject_buffer;
|
||||||
|
|
||||||
get_patch_filename(&filename,
|
if (opt->numbered_files)
|
||||||
opt->numbered_files ? NULL : commit, NULL,
|
strbuf_addf(&filename, "%d", opt->nr);
|
||||||
|
else
|
||||||
|
get_patch_filename(&filename, commit, NULL,
|
||||||
opt);
|
opt);
|
||||||
snprintf(buffer, sizeof(buffer) - 1,
|
snprintf(buffer, sizeof(buffer) - 1,
|
||||||
"\n--%s%s\n"
|
"\n--%s%s\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user