* mu-flags: add MU_FLAG_LIST, clean-up code a bit

This commit is contained in:
djcb
2013-07-03 21:54:08 +03:00
parent 81eeff1c13
commit 81c3e11c48
2 changed files with 35 additions and 70 deletions

View File

@ -51,7 +51,10 @@ enum _MuFlags {
/* pseudo-flag, only for queries, so we can search for
* flag:unread, which is equivalent to 'flag:new OR NOT
* flag:seen' */
MU_FLAG_UNREAD = 1 << 10
MU_FLAG_UNREAD = 1 << 10,
/* other content flags */
MU_FLAG_LIST = 1 << 11
};
typedef enum _MuFlags MuFlags;