From: Thomas Roessler Date: Thu, 10 May 2001 13:11:59 +0000 (+0000) Subject: Fix %D. From Len Lattanzi . X-Git-Tag: mutt-1-3-19-rel~71 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5aa8ee2c93acf2cc063d86b7e11e71ab54e5a0cc;p=mutt Fix %D. From Len Lattanzi . --- diff --git a/hdrline.c b/hdrline.c index 7c9c064f..0717261a 100644 --- a/hdrline.c +++ b/hdrline.c @@ -404,7 +404,7 @@ hdr_format_str (char *dest, setlocale (LC_TIME, "C"); mutt_format_s (dest, destlen, prefix, buf2); - if (len > 0 && op != 'd') + if (len > 0 && op != 'd' && op != 'D') /* Skip ending op */ src = cp + 1; } break;