6 #include "string-list.h"
11 static char *user_format
;
13 void get_commit_format(const char *arg
, struct rev_info
*rev
)
16 static struct cmt_fmt_map
{
21 { "raw", 1, CMIT_FMT_RAW
},
22 { "medium", 1, CMIT_FMT_MEDIUM
},
23 { "short", 1, CMIT_FMT_SHORT
},
24 { "email", 1, CMIT_FMT_EMAIL
},
25 { "full", 5, CMIT_FMT_FULL
},
26 { "fuller", 5, CMIT_FMT_FULLER
},
27 { "oneline", 1, CMIT_FMT_ONELINE
},
30 rev
->use_terminator
= 0;
32 rev
->commit_format
= CMIT_FMT_DEFAULT
;
35 if (!prefixcmp(arg
, "format:") || !prefixcmp(arg
, "tformat:")) {
36 const char *cp
= strchr(arg
, ':') + 1;
38 user_format
= xstrdup(cp
);
40 rev
->use_terminator
= 1;
41 rev
->commit_format
= CMIT_FMT_USERFORMAT
;
44 for (i
= 0; i
< ARRAY_SIZE(cmt_fmts
); i
++) {
45 if (!strncmp(arg
, cmt_fmts
[i
].n
, cmt_fmts
[i
].cmp_len
) &&
46 !strncmp(arg
, cmt_fmts
[i
].n
, strlen(arg
))) {
47 if (cmt_fmts
[i
].v
== CMIT_FMT_ONELINE
)
48 rev
->use_terminator
= 1;
49 rev
->commit_format
= cmt_fmts
[i
].v
;
54 die("invalid --pretty format: %s", arg
);
58 * Generic support for pretty-printing the header
60 static int get_one_line(const char *msg
)
75 /* High bit set, or ISO-2022-INT */
79 return ((ch
& 0x80) || (ch
== 0x1b));
82 static int is_rfc2047_special(char ch
)
84 return (non_ascii(ch
) || (ch
== '=') || (ch
== '?') || (ch
== '_'));
87 static void add_rfc2047(struct strbuf
*sb
, const char *line
, int len
,
92 for (i
= 0; i
< len
; i
++) {
96 if ((i
+ 1 < len
) && (ch
== '=' && line
[i
+1] == '?'))
99 strbuf_add(sb
, line
, len
);
103 strbuf_grow(sb
, len
* 3 + strlen(encoding
) + 100);
104 strbuf_addf(sb
, "=?%s?q?", encoding
);
105 for (i
= last
= 0; i
< len
; i
++) {
106 unsigned ch
= line
[i
] & 0xFF;
108 * We encode ' ' using '=20' even though rfc2047
109 * allows using '_' for readability. Unfortunately,
110 * many programs do not understand this and just
111 * leave the underscore in place.
113 if (is_rfc2047_special(ch
) || ch
== ' ') {
114 strbuf_add(sb
, line
+ last
, i
- last
);
115 strbuf_addf(sb
, "=%02X", ch
);
119 strbuf_add(sb
, line
+ last
, len
- last
);
120 strbuf_addstr(sb
, "?=");
123 void pp_user_info(const char *what
, enum cmit_fmt fmt
, struct strbuf
*sb
,
124 const char *line
, enum date_mode dmode
,
125 const char *encoding
)
131 const char *filler
= " ";
133 if (fmt
== CMIT_FMT_ONELINE
)
135 date
= strchr(line
, '>');
138 namelen
= ++date
- line
;
139 time
= strtoul(date
, &date
, 10);
140 tz
= strtol(date
, NULL
, 10);
142 if (fmt
== CMIT_FMT_EMAIL
) {
143 char *name_tail
= strchr(line
, '<');
144 int display_name_length
;
147 while (line
< name_tail
&& isspace(name_tail
[-1]))
149 display_name_length
= name_tail
- line
;
151 strbuf_addstr(sb
, "From: ");
152 add_rfc2047(sb
, line
, display_name_length
, encoding
);
153 strbuf_add(sb
, name_tail
, namelen
- display_name_length
);
154 strbuf_addch(sb
, '\n');
156 strbuf_addf(sb
, "%s: %.*s%.*s\n", what
,
157 (fmt
== CMIT_FMT_FULLER
) ? 4 : 0,
158 filler
, namelen
, line
);
161 case CMIT_FMT_MEDIUM
:
162 strbuf_addf(sb
, "Date: %s\n", show_date(time
, tz
, dmode
));
165 strbuf_addf(sb
, "Date: %s\n", show_date(time
, tz
, DATE_RFC2822
));
167 case CMIT_FMT_FULLER
:
168 strbuf_addf(sb
, "%sDate: %s\n", what
, show_date(time
, tz
, dmode
));
176 static int is_empty_line(const char *line
, int *len_p
)
179 while (len
&& isspace(line
[len
-1]))
185 static const char *skip_empty_lines(const char *msg
)
188 int linelen
= get_one_line(msg
);
192 if (!is_empty_line(msg
, &ll
))
199 static void add_merge_info(enum cmit_fmt fmt
, struct strbuf
*sb
,
200 const struct commit
*commit
, int abbrev
)
202 struct commit_list
*parent
= commit
->parents
;
204 if ((fmt
== CMIT_FMT_ONELINE
) || (fmt
== CMIT_FMT_EMAIL
) ||
205 !parent
|| !parent
->next
)
208 strbuf_addstr(sb
, "Merge:");
211 struct commit
*p
= parent
->item
;
212 const char *hex
= NULL
;
214 hex
= find_unique_abbrev(p
->object
.sha1
, abbrev
);
216 hex
= sha1_to_hex(p
->object
.sha1
);
217 parent
= parent
->next
;
219 strbuf_addf(sb
, " %s", hex
);
221 strbuf_addch(sb
, '\n');
224 static char *get_header(const struct commit
*commit
, const char *key
)
226 int key_len
= strlen(key
);
227 const char *line
= commit
->buffer
;
230 const char *eol
= strchr(line
, '\n'), *next
;
235 eol
= line
+ strlen(line
);
239 if (eol
- line
> key_len
&&
240 !strncmp(line
, key
, key_len
) &&
241 line
[key_len
] == ' ') {
242 return xmemdupz(line
+ key_len
+ 1, eol
- line
- key_len
- 1);
248 static char *replace_encoding_header(char *buf
, const char *encoding
)
250 struct strbuf tmp
= STRBUF_INIT
;
254 /* guess if there is an encoding header before a \n\n */
255 while (strncmp(cp
, "encoding ", strlen("encoding "))) {
256 cp
= strchr(cp
, '\n');
257 if (!cp
|| *++cp
== '\n')
261 cp
= strchr(cp
, '\n');
263 return buf
; /* should not happen but be defensive */
264 len
= cp
+ 1 - (buf
+ start
);
266 strbuf_attach(&tmp
, buf
, strlen(buf
), strlen(buf
) + 1);
267 if (is_encoding_utf8(encoding
)) {
268 /* we have re-coded to UTF-8; drop the header */
269 strbuf_remove(&tmp
, start
, len
);
271 /* just replaces XXXX in 'encoding XXXX\n' */
272 strbuf_splice(&tmp
, start
+ strlen("encoding "),
273 len
- strlen("encoding \n"),
274 encoding
, strlen(encoding
));
276 return strbuf_detach(&tmp
, NULL
);
279 static char *logmsg_reencode(const struct commit
*commit
,
280 const char *output_encoding
)
282 static const char *utf8
= "utf-8";
283 const char *use_encoding
;
287 if (!*output_encoding
)
289 encoding
= get_header(commit
, "encoding");
290 use_encoding
= encoding
? encoding
: utf8
;
291 if (!strcmp(use_encoding
, output_encoding
))
292 if (encoding
) /* we'll strip encoding header later */
293 out
= xstrdup(commit
->buffer
);
295 return NULL
; /* nothing to do */
297 out
= reencode_string(commit
->buffer
,
298 output_encoding
, use_encoding
);
300 out
= replace_encoding_header(out
, output_encoding
);
306 static int mailmap_name(char *email
, int email_len
, char *name
, int name_len
)
308 static struct string_list
*mail_map
;
310 mail_map
= xcalloc(1, sizeof(*mail_map
));
311 read_mailmap(mail_map
, NULL
);
313 return mail_map
->nr
&& map_user(mail_map
, email
, email_len
, name
, name_len
);
316 static size_t format_person_part(struct strbuf
*sb
, char part
,
317 const char *msg
, int len
, enum date_mode dmode
)
319 /* currently all placeholders have same length */
320 const int placeholder_len
= 2;
321 int start
, end
, tz
= 0;
322 unsigned long date
= 0;
324 const char *name_start
, *name_end
, *mail_start
, *mail_end
, *msg_end
= msg
+len
;
325 char person_name
[1024];
326 char person_mail
[1024];
328 /* advance 'end' to point to email start delimiter */
329 for (end
= 0; end
< len
&& msg
[end
] != '<'; end
++)
333 * When end points at the '<' that we found, it should have
334 * matching '>' later, which means 'end' must be strictly
340 /* Seek for both name and email part */
343 while (name_end
> name_start
&& isspace(*(name_end
-1)))
345 mail_start
= msg
+end
+1;
346 mail_end
= mail_start
;
347 while (mail_end
< msg_end
&& *mail_end
!= '>')
349 if (mail_end
== msg_end
)
353 if (part
== 'N' || part
== 'E') { /* mailmap lookup */
354 strlcpy(person_name
, name_start
, name_end
-name_start
+1);
355 strlcpy(person_mail
, mail_start
, mail_end
-mail_start
+1);
356 mailmap_name(person_mail
, sizeof(person_mail
), person_name
, sizeof(person_name
));
357 name_start
= person_name
;
358 name_end
= name_start
+ strlen(person_name
);
359 mail_start
= person_mail
;
360 mail_end
= mail_start
+ strlen(person_mail
);
362 if (part
== 'n' || part
== 'N') { /* name */
363 strbuf_add(sb
, name_start
, name_end
-name_start
);
364 return placeholder_len
;
366 if (part
== 'e' || part
== 'E') { /* email */
367 strbuf_add(sb
, mail_start
, mail_end
-mail_start
);
368 return placeholder_len
;
371 /* advance 'start' to point to date start delimiter */
372 for (start
= end
+ 1; start
< len
&& isspace(msg
[start
]); start
++)
376 date
= strtoul(msg
+ start
, &ep
, 10);
377 if (msg
+ start
== ep
)
380 if (part
== 't') { /* date, UNIX timestamp */
381 strbuf_add(sb
, msg
+ start
, ep
- (msg
+ start
));
382 return placeholder_len
;
386 for (start
= ep
- msg
+ 1; start
< len
&& isspace(msg
[start
]); start
++)
388 if (start
+ 1 < len
) {
389 tz
= strtoul(msg
+ start
+ 1, NULL
, 10);
390 if (msg
[start
] == '-')
396 strbuf_addstr(sb
, show_date(date
, tz
, dmode
));
397 return placeholder_len
;
398 case 'D': /* date, RFC2822 style */
399 strbuf_addstr(sb
, show_date(date
, tz
, DATE_RFC2822
));
400 return placeholder_len
;
401 case 'r': /* date, relative */
402 strbuf_addstr(sb
, show_date(date
, tz
, DATE_RELATIVE
));
403 return placeholder_len
;
404 case 'i': /* date, ISO 8601 */
405 strbuf_addstr(sb
, show_date(date
, tz
, DATE_ISO8601
));
406 return placeholder_len
;
411 * bogus commit, 'sb' cannot be updated, but we still need to
412 * compute a valid return value.
414 if (part
== 'n' || part
== 'e' || part
== 't' || part
== 'd'
415 || part
== 'D' || part
== 'r' || part
== 'i')
416 return placeholder_len
;
418 return 0; /* unknown placeholder */
426 struct format_commit_context
{
427 const struct commit
*commit
;
428 enum date_mode dmode
;
429 unsigned commit_header_parsed
:1;
430 unsigned commit_message_parsed
:1;
432 /* These offsets are relative to the start of the commit message. */
434 struct chunk committer
;
435 struct chunk encoding
;
440 /* The following ones are relative to the result struct strbuf. */
441 struct chunk abbrev_commit_hash
;
442 struct chunk abbrev_tree_hash
;
443 struct chunk abbrev_parent_hashes
;
446 static int add_again(struct strbuf
*sb
, struct chunk
*chunk
)
449 strbuf_adddup(sb
, chunk
->off
, chunk
->len
);
454 * We haven't seen this chunk before. Our caller is surely
455 * going to add it the hard way now. Remember the most likely
456 * start of the to-be-added chunk: the current end of the
459 chunk
->off
= sb
->len
;
463 static void parse_commit_header(struct format_commit_context
*context
)
465 const char *msg
= context
->commit
->buffer
;
468 for (i
= 0; msg
[i
]; i
++) {
470 for (eol
= i
; msg
[eol
] && msg
[eol
] != '\n'; eol
++)
475 } else if (!prefixcmp(msg
+ i
, "author ")) {
476 context
->author
.off
= i
+ 7;
477 context
->author
.len
= eol
- i
- 7;
478 } else if (!prefixcmp(msg
+ i
, "committer ")) {
479 context
->committer
.off
= i
+ 10;
480 context
->committer
.len
= eol
- i
- 10;
481 } else if (!prefixcmp(msg
+ i
, "encoding ")) {
482 context
->encoding
.off
= i
+ 9;
483 context
->encoding
.len
= eol
- i
- 9;
487 context
->message_off
= i
;
488 context
->commit_header_parsed
= 1;
491 const char *format_subject(struct strbuf
*sb
, const char *msg
,
492 const char *line_separator
)
497 const char *line
= msg
;
498 int linelen
= get_one_line(line
);
501 if (!linelen
|| is_empty_line(line
, &linelen
))
506 strbuf_grow(sb
, linelen
+ 2);
508 strbuf_addstr(sb
, line_separator
);
509 strbuf_add(sb
, line
, linelen
);
515 static void parse_commit_message(struct format_commit_context
*c
)
517 const char *msg
= c
->commit
->buffer
+ c
->message_off
;
518 const char *start
= c
->commit
->buffer
;
520 msg
= skip_empty_lines(msg
);
521 c
->subject_off
= msg
- start
;
523 msg
= format_subject(NULL
, msg
, NULL
);
524 msg
= skip_empty_lines(msg
);
525 c
->body_off
= msg
- start
;
527 c
->commit_message_parsed
= 1;
530 static void format_decoration(struct strbuf
*sb
, const struct commit
*commit
)
532 struct name_decoration
*d
;
533 const char *prefix
= " (";
535 load_ref_decorations();
536 d
= lookup_decoration(&name_decoration
, &commit
->object
);
538 strbuf_addstr(sb
, prefix
);
540 strbuf_addstr(sb
, d
->name
);
543 if (prefix
[0] == ',')
544 strbuf_addch(sb
, ')');
547 static size_t format_commit_item(struct strbuf
*sb
, const char *placeholder
,
550 struct format_commit_context
*c
= context
;
551 const struct commit
*commit
= c
->commit
;
552 const char *msg
= commit
->buffer
;
553 struct commit_list
*p
;
556 /* these are independent of the commit */
557 switch (placeholder
[0]) {
559 if (placeholder
[1] == '(') {
560 const char *end
= strchr(placeholder
+ 2, ')');
561 char color
[COLOR_MAXLEN
];
564 color_parse_mem(placeholder
+ 2,
565 end
- (placeholder
+ 2),
566 "--pretty format", color
);
567 strbuf_addstr(sb
, color
);
568 return end
- placeholder
+ 1;
570 if (!prefixcmp(placeholder
+ 1, "red")) {
571 strbuf_addstr(sb
, "\033[31m");
573 } else if (!prefixcmp(placeholder
+ 1, "green")) {
574 strbuf_addstr(sb
, "\033[32m");
576 } else if (!prefixcmp(placeholder
+ 1, "blue")) {
577 strbuf_addstr(sb
, "\033[34m");
579 } else if (!prefixcmp(placeholder
+ 1, "reset")) {
580 strbuf_addstr(sb
, "\033[m");
584 case 'n': /* newline */
585 strbuf_addch(sb
, '\n');
588 /* %x00 == NUL, %x0a == LF, etc. */
589 if (0 <= (h1
= hexval_table
[0xff & placeholder
[1]]) &&
591 0 <= (h2
= hexval_table
[0xff & placeholder
[2]]) &&
593 strbuf_addch(sb
, (h1
<<4)|h2
);
599 /* these depend on the commit */
600 if (!commit
->object
.parsed
)
601 parse_object(commit
->object
.sha1
);
603 switch (placeholder
[0]) {
604 case 'H': /* commit hash */
605 strbuf_addstr(sb
, sha1_to_hex(commit
->object
.sha1
));
607 case 'h': /* abbreviated commit hash */
608 if (add_again(sb
, &c
->abbrev_commit_hash
))
610 strbuf_addstr(sb
, find_unique_abbrev(commit
->object
.sha1
,
612 c
->abbrev_commit_hash
.len
= sb
->len
- c
->abbrev_commit_hash
.off
;
614 case 'T': /* tree hash */
615 strbuf_addstr(sb
, sha1_to_hex(commit
->tree
->object
.sha1
));
617 case 't': /* abbreviated tree hash */
618 if (add_again(sb
, &c
->abbrev_tree_hash
))
620 strbuf_addstr(sb
, find_unique_abbrev(commit
->tree
->object
.sha1
,
622 c
->abbrev_tree_hash
.len
= sb
->len
- c
->abbrev_tree_hash
.off
;
624 case 'P': /* parent hashes */
625 for (p
= commit
->parents
; p
; p
= p
->next
) {
626 if (p
!= commit
->parents
)
627 strbuf_addch(sb
, ' ');
628 strbuf_addstr(sb
, sha1_to_hex(p
->item
->object
.sha1
));
631 case 'p': /* abbreviated parent hashes */
632 if (add_again(sb
, &c
->abbrev_parent_hashes
))
634 for (p
= commit
->parents
; p
; p
= p
->next
) {
635 if (p
!= commit
->parents
)
636 strbuf_addch(sb
, ' ');
637 strbuf_addstr(sb
, find_unique_abbrev(
638 p
->item
->object
.sha1
, DEFAULT_ABBREV
));
640 c
->abbrev_parent_hashes
.len
= sb
->len
-
641 c
->abbrev_parent_hashes
.off
;
643 case 'm': /* left/right/bottom */
644 strbuf_addch(sb
, (commit
->object
.flags
& BOUNDARY
)
646 : (commit
->object
.flags
& SYMMETRIC_LEFT
)
651 format_decoration(sb
, commit
);
655 /* For the rest we have to parse the commit header. */
656 if (!c
->commit_header_parsed
)
657 parse_commit_header(c
);
659 switch (placeholder
[0]) {
660 case 'a': /* author ... */
661 return format_person_part(sb
, placeholder
[1],
662 msg
+ c
->author
.off
, c
->author
.len
,
664 case 'c': /* committer ... */
665 return format_person_part(sb
, placeholder
[1],
666 msg
+ c
->committer
.off
, c
->committer
.len
,
668 case 'e': /* encoding */
669 strbuf_add(sb
, msg
+ c
->encoding
.off
, c
->encoding
.len
);
673 /* Now we need to parse the commit message. */
674 if (!c
->commit_message_parsed
)
675 parse_commit_message(c
);
677 switch (placeholder
[0]) {
678 case 's': /* subject */
679 format_subject(sb
, msg
+ c
->subject_off
, " ");
682 strbuf_addstr(sb
, msg
+ c
->body_off
);
685 return 0; /* unknown placeholder */
688 void format_commit_message(const struct commit
*commit
,
689 const void *format
, struct strbuf
*sb
,
690 enum date_mode dmode
)
692 struct format_commit_context context
;
694 memset(&context
, 0, sizeof(context
));
695 context
.commit
= commit
;
696 context
.dmode
= dmode
;
697 strbuf_expand(sb
, format
, format_commit_item
, &context
);
700 static void pp_header(enum cmit_fmt fmt
,
702 enum date_mode dmode
,
703 const char *encoding
,
704 const struct commit
*commit
,
708 int parents_shown
= 0;
711 const char *line
= *msg_p
;
712 int linelen
= get_one_line(*msg_p
);
722 if (fmt
== CMIT_FMT_RAW
) {
723 strbuf_add(sb
, line
, linelen
);
727 if (!memcmp(line
, "parent ", 7)) {
729 die("bad parent line in commit");
733 if (!parents_shown
) {
734 struct commit_list
*parent
;
736 for (parent
= commit
->parents
, num
= 0;
738 parent
= parent
->next
, num
++)
740 /* with enough slop */
741 strbuf_grow(sb
, num
* 50 + 20);
742 add_merge_info(fmt
, sb
, commit
, abbrev
);
747 * MEDIUM == DEFAULT shows only author with dates.
748 * FULL shows both authors but not dates.
749 * FULLER shows both authors and dates.
751 if (!memcmp(line
, "author ", 7)) {
752 strbuf_grow(sb
, linelen
+ 80);
753 pp_user_info("Author", fmt
, sb
, line
+ 7, dmode
, encoding
);
755 if (!memcmp(line
, "committer ", 10) &&
756 (fmt
== CMIT_FMT_FULL
|| fmt
== CMIT_FMT_FULLER
)) {
757 strbuf_grow(sb
, linelen
+ 80);
758 pp_user_info("Commit", fmt
, sb
, line
+ 10, dmode
, encoding
);
763 void pp_title_line(enum cmit_fmt fmt
,
767 const char *after_subject
,
768 const char *encoding
,
771 const char *line_separator
= (fmt
== CMIT_FMT_EMAIL
) ? "\n " : " ";
774 strbuf_init(&title
, 80);
775 *msg_p
= format_subject(&title
, *msg_p
, line_separator
);
777 strbuf_grow(sb
, title
.len
+ 1024);
779 strbuf_addstr(sb
, subject
);
780 add_rfc2047(sb
, title
.buf
, title
.len
, encoding
);
782 strbuf_addbuf(sb
, &title
);
784 strbuf_addch(sb
, '\n');
786 if (need_8bit_cte
> 0) {
787 const char *header_fmt
=
788 "MIME-Version: 1.0\n"
789 "Content-Type: text/plain; charset=%s\n"
790 "Content-Transfer-Encoding: 8bit\n";
791 strbuf_addf(sb
, header_fmt
, encoding
);
794 strbuf_addstr(sb
, after_subject
);
796 if (fmt
== CMIT_FMT_EMAIL
) {
797 strbuf_addch(sb
, '\n');
799 strbuf_release(&title
);
802 void pp_remainder(enum cmit_fmt fmt
,
809 const char *line
= *msg_p
;
810 int linelen
= get_one_line(line
);
816 if (is_empty_line(line
, &linelen
)) {
819 if (fmt
== CMIT_FMT_SHORT
)
824 strbuf_grow(sb
, linelen
+ indent
+ 20);
826 memset(sb
->buf
+ sb
->len
, ' ', indent
);
827 strbuf_setlen(sb
, sb
->len
+ indent
);
829 strbuf_add(sb
, line
, linelen
);
830 strbuf_addch(sb
, '\n');
834 char *reencode_commit_message(const struct commit
*commit
, const char **encoding_p
)
836 const char *encoding
;
838 encoding
= (git_log_output_encoding
839 ? git_log_output_encoding
840 : git_commit_encoding
);
844 *encoding_p
= encoding
;
845 return logmsg_reencode(commit
, encoding
);
848 void pretty_print_commit(enum cmit_fmt fmt
, const struct commit
*commit
,
849 struct strbuf
*sb
, int abbrev
,
850 const char *subject
, const char *after_subject
,
851 enum date_mode dmode
, int need_8bit_cte
)
853 unsigned long beginning_of_body
;
855 const char *msg
= commit
->buffer
;
857 const char *encoding
;
859 if (fmt
== CMIT_FMT_USERFORMAT
) {
860 format_commit_message(commit
, user_format
, sb
, dmode
);
864 reencoded
= reencode_commit_message(commit
, &encoding
);
869 if (fmt
== CMIT_FMT_ONELINE
|| fmt
== CMIT_FMT_EMAIL
)
873 * We need to check and emit Content-type: to mark it
874 * as 8-bit if we haven't done so.
876 if (fmt
== CMIT_FMT_EMAIL
&& need_8bit_cte
== 0) {
879 for (in_body
= i
= 0; (ch
= msg
[i
]); i
++) {
881 /* author could be non 7-bit ASCII but
882 * the log may be so; skip over the
885 if (ch
== '\n' && msg
[i
+1] == '\n')
888 else if (non_ascii(ch
)) {
895 pp_header(fmt
, abbrev
, dmode
, encoding
, commit
, &msg
, sb
);
896 if (fmt
!= CMIT_FMT_ONELINE
&& !subject
) {
897 strbuf_addch(sb
, '\n');
900 /* Skip excess blank lines at the beginning of body, if any... */
901 msg
= skip_empty_lines(msg
);
903 /* These formats treat the title line specially. */
904 if (fmt
== CMIT_FMT_ONELINE
|| fmt
== CMIT_FMT_EMAIL
)
905 pp_title_line(fmt
, &msg
, sb
, subject
,
906 after_subject
, encoding
, need_8bit_cte
);
908 beginning_of_body
= sb
->len
;
909 if (fmt
!= CMIT_FMT_ONELINE
)
910 pp_remainder(fmt
, &msg
, sb
, indent
);
913 /* Make sure there is an EOLN for the non-oneline case */
914 if (fmt
!= CMIT_FMT_ONELINE
)
915 strbuf_addch(sb
, '\n');
918 * The caller may append additional body text in e-mail
919 * format. Make sure we did not strip the blank line
920 * between the header and the body.
922 if (fmt
== CMIT_FMT_EMAIL
&& sb
->len
<= beginning_of_body
)
923 strbuf_addch(sb
, '\n');