summaryrefslogtreecommitdiffstats
path: root/mutt.h
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2020-02-10 15:34:59 -0800
committerKevin McCarthy <kevin@8t8.us>2020-02-10 15:34:59 -0800
commit8d77022b4c94edbf197b11c07f0666bff0c1a08c (patch)
tree0a98180574f544c8f6b23208ed5b88cc5dc932f0 /mutt.h
parentf2b05d7cd164d03f55d636f52334acc716cfb831 (diff)
parent0f8a079d1cc66878ddfa68476f8ea7abdb6fd7e8 (diff)
Merge branch 'stable'
Diffstat (limited to 'mutt.h')
-rw-r--r--mutt.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/mutt.h b/mutt.h
index 05f052fb..922fb64e 100644
--- a/mutt.h
+++ b/mutt.h
@@ -203,9 +203,8 @@ typedef enum
#define MUTT_THREAD_COLLAPSE (1<<0)
#define MUTT_THREAD_UNCOLLAPSE (1<<1)
-#define MUTT_THREAD_GET_HIDDEN (1<<2)
-#define MUTT_THREAD_UNREAD (1<<3)
-#define MUTT_THREAD_NEXT_UNREAD (1<<4)
+#define MUTT_THREAD_UNREAD (1<<2)
+#define MUTT_THREAD_NEXT_UNREAD (1<<3)
enum
{
@@ -886,7 +885,9 @@ typedef struct header
/* the following are used to support collapsing threads */
unsigned int collapsed : 1; /* is this message part of a collapsed thread? */
unsigned int limited : 1; /* is this message in a limited view? */
- size_t num_hidden; /* number of hidden messages in this view */
+ size_t num_hidden; /* number of hidden messages in this view.
+ * only valid for the root header, when
+ * collapsed is set. */
short recipient; /* user_is_recipient()'s return value, cached */