Skip to content

Commit 12947ef

Browse files
authored
Merge pull request #42 from bshannon/issue_30
The describe_folder option was being ignored - fixes #30
2 parents 990bfe0 + 011acc1 commit 12947ef

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
@@ -3216,7 +3216,8 @@ void write_toplevel_indices(int amountmsgs)
32163216
char *index_title;
32173217
char *filename;
32183218
char *saved_set_dateformat;
3219-
char *abbr_dateformat = "%d %b %Y";
3219+
char *abbr_dateformat = set_describe_folder != NULL ?
3220+
set_describe_folder : "%d %b %Y";
32203221
char *verbose_dateformat = "%A, %e %B %Y";
32213222

32223223
char *tmpstr;

0 commit comments

Comments
 (0)