Display tagged messages.
Showing
1 changed file
with
3 additions
and
1 deletions
... | @@ -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; | ... | ... |
-
Please register or sign in to post a comment