From 2b05f9681f89936bedab360c2b25233cbf5bc54f Mon Sep 17 00:00:00 2001 From: Damien Riegel Date: Sat, 18 Feb 2017 14:19:58 -0500 Subject: [PATCH] mx: don't make MUTT_NNTP and MUTT_COMPRESSED conditional Other symbols like MUTT_IMAP and MUTT_POP don't depend on their respective configuration flags to be defined, keep the same logic for MUTT_NNTP and MUTT_COMPRESSED. That makes it easier to remove some ifdef. --- mx.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/mx.h b/mx.h index f084bc301..c5a968610 100644 --- a/mx.h +++ b/mx.h @@ -35,15 +35,11 @@ enum MUTT_MMDF, MUTT_MH, MUTT_MAILDIR, -#ifdef USE_NNTP MUTT_NNTP, -#endif MUTT_IMAP, MUTT_NOTMUCH, - MUTT_POP -#ifdef USE_COMPRESSED - , MUTT_COMPRESSED -#endif + MUTT_POP, + MUTT_COMPRESSED, }; WHERE short DefaultMagic INITVAL (MUTT_MBOX); -- 2.40.0