From: Tim Stoakes Date: Sun, 16 Sep 2012 07:31:54 +0000 (+0200) Subject: Fix auto_tag=yes for modify-labels* and quasi-delete X-Git-Tag: neomutt-20160404~13^2~44 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=54bd9f03663f450449fca671d4668b87f9aadb53;p=neomutt Fix auto_tag=yes for modify-labels* and quasi-delete When 'auto_tag' was 'yes', * and still only applied to the currently-selected message. Now they apply to all tagged messages, as they should. --- diff --git a/curs_main.c b/curs_main.c index 433ce3088..55a19a105 100644 --- a/curs_main.c +++ b/curs_main.c @@ -1399,7 +1399,7 @@ int mutt_index_menu (void) mutt_message _("No label specified, aborting."); break; } - if (tag && !option (OPTAUTOTAG)) + if (tag) { char msgbuf[STRING]; progress_t progress;