well as any other sequence, to allow clearing of the current
message indication.
- Removed obsolete BUGS section at end of rcvstore(1) man page [Bug #4361].
- Fixed -nocc me doesn't account for Alternate-Mailboxes [Bug #36635].
- Propagate Mail-Followup-To [Bug #5571].
+- "mark -sequence cur -delete all" now works for cur as well as any
+ other sequence, to allow clearing of the current message indication.
if (is_selected (mp, msgnum))
clear_sequence (mp, i, msgnum);
+ if (! strcmp (cp, current) &&
+ mp->lowsel <= mp->curmsg && mp->curmsg <= mp->hghsel) {
+ /* Removed current message indication, so reset curmsg. */
+ mp->curmsg = 0;
+ }
+
/*
* Set the public/private bit for this sequence.
*/
folder -create +other > /dev/null
run_test 'mark +other -sequence unseen all' 'mark: no messages in other'
+# Test removal of indication of cur message.
+mark +inbox -sequence cur -delete all
+run_test 'pick -nolist cur' 'pick: no cur message'
+
exit $failed