diff options
author | Linus Arver <linusa@google.com> | 2023-10-20 21:01:33 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-10-20 23:25:12 +0200 |
commit | 7cb26a1722a7f7d9f1b01f2dcde8fe81d3a96bc1 (patch) | |
tree | 8be94832292d659787f6a44f42a644387cf0b75b /builtin/commit.c | |
parent | The twelfth batch (diff) | |
download | git-7cb26a1722a7f7d9f1b01f2dcde8fe81d3a96bc1.tar.xz git-7cb26a1722a7f7d9f1b01f2dcde8fe81d3a96bc1.zip |
commit: ignore_non_trailer computes number of bytes to ignore
ignore_non_trailer() returns the _number of bytes_ that should be
ignored from the end of the log message. It does not by itself "ignore"
anything.
Rename this function to remove the leading "ignore" verb, to sound more
like a quantity than an action.
Signed-off-by: Linus Arver <linusa@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/commit.c')
-rw-r--r-- | builtin/commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/commit.c b/builtin/commit.c index 7da5f92448..d1785d32db 100644 --- a/builtin/commit.c +++ b/builtin/commit.c @@ -900,7 +900,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix, strbuf_stripspace(&sb, '\0'); if (signoff) - append_signoff(&sb, ignore_non_trailer(sb.buf, sb.len), 0); + append_signoff(&sb, ignored_log_message_bytes(sb.buf, sb.len), 0); if (fwrite(sb.buf, 1, sb.len, s->fp) < sb.len) die_errno(_("could not write commit template")); |