Skip to content

Commit 011acc1

Browse files
committed
The describe_folder option was being ignored - fixes #30
1 parent dc5f963 commit 011acc1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/print.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3214,7 +3214,8 @@ void write_toplevel_indices(int amountmsgs)
32143214
char *index_title;
32153215
char *filename;
32163216
char *saved_set_dateformat;
3217-
char *abbr_dateformat = "%d %b %Y";
3217+
char *abbr_dateformat = set_describe_folder != NULL ?
3218+
set_describe_folder : "%d %b %Y";
32183219
char *verbose_dateformat = "%A, %e %B %Y";
32193220

32203221
char *tmpstr;

0 commit comments

Comments
 (0)