diff options
| author | Junio C Hamano <gitster@pobox.com> | 2024-01-02 13:51:29 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-01-02 13:51:29 -0800 |
| commit | 59a29e1274948bf9a3ef44c65903d09194464e1c (patch) | |
| tree | 99be8596157d36d62baed5a38e195e99c91c1dad /commit.h | |
| parent | Merge branch 'jc/retire-cas-opt-name-constant' (diff) | |
| parent | trailer: use offsets for trailer_start/trailer_end (diff) | |
| download | git-59a29e1274948bf9a3ef44c65903d09194464e1c.tar.gz git-59a29e1274948bf9a3ef44c65903d09194464e1c.zip | |
Merge branch 'la/trailer-cleanups'
Code clean-up.
* la/trailer-cleanups:
trailer: use offsets for trailer_start/trailer_end
trailer: find the end of the log message
commit: ignore_non_trailer computes number of bytes to ignore
Diffstat (limited to 'commit.h')
| -rw-r--r-- | commit.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -294,8 +294,8 @@ const char *find_header_mem(const char *msg, size_t len, const char *find_commit_header(const char *msg, const char *key, size_t *out_len); -/* Find the end of the log message, the right place for a new trailer. */ -size_t ignore_non_trailer(const char *buf, size_t len); +/* Find the number of bytes to ignore from the end of a log message. */ +size_t ignored_log_message_bytes(const char *buf, size_t len); typedef int (*each_mergetag_fn)(struct commit *commit, struct commit_extra_header *extra, void *cb_data); |
