Commit 8a3a337f 8a3a337fe4181e93d641ed1a61f062016bb8f787 by Sergey Poznyakoff

Display tagged messages.

1 parent 32c67baa
...@@ -84,6 +84,8 @@ mail_from (int argc, char **argv) ...@@ -84,6 +84,8 @@ mail_from (int argc, char **argv)
84 cflag = 'M'; 84 cflag = 'M';
85 else if (attribute_is_userflag(attr, MAIL_ATTRIBUTE_SAVED)) 85 else if (attribute_is_userflag(attr, MAIL_ATTRIBUTE_SAVED))
86 cflag = '*'; 86 cflag = '*';
87 else if (attribute_is_userflag(attr, MAIL_ATTRIBUTE_TAGGED))
88 cflag = 'T';
87 else if (flags & MU_ATTRIBUTE_READ) 89 else if (flags & MU_ATTRIBUTE_READ)
88 cflag = 'R'; 90 cflag = 'R';
89 else if (flags & MU_ATTRIBUTE_SEEN) 91 else if (flags & MU_ATTRIBUTE_SEEN)
...@@ -106,7 +108,7 @@ mail_from (int argc, char **argv) ...@@ -106,7 +108,7 @@ mail_from (int argc, char **argv)
106 108
107 /* The "From" field will take a third of the screen. 109 /* The "From" field will take a third of the screen.
108 Subject will take the rest. 110 Subject will take the rest.
109 FIXME: This is not quiet correct we use fix sizes 111 FIXME: This is not quite correct that we use fixed sizes
110 18, 16 for the other fields. 112 18, 16 for the other fields.
111 */ 113 */
112 froml = cols / 3; 114 froml = cols / 3;
......