diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-08-01 13:49:13 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-08-01 13:49:13 -0700 |
commit | dc3c6fb56557bfa4a4f5ed5abca25f119ded6cde (patch) | |
tree | 1dc405e1d929d69cd95eb998472f5e05c2b4a3f8 /refs.c | |
parent | 341a196ab6603aa7be709812132fd906a3d2359c (diff) | |
parent | 25429fed5ce134bce9f729d927ac397badae1959 (diff) | |
download | git-dc3c6fb56557bfa4a4f5ed5abca25f119ded6cde.tar.gz |
Merge branch 'hn/reftable' into master
Brown-paper-bag fix.
* hn/reftable:
refs: move the logic to add \t to reflog to the files backend
Diffstat (limited to 'refs.c')
-rw-r--r-- | refs.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -907,7 +907,6 @@ static void copy_reflog_msg(struct strbuf *sb, const char *msg) char c; int wasspace = 1; - strbuf_addch(sb, '\t'); while ((c = *msg++)) { if (wasspace && isspace(c)) continue; |