From 54bd9f03663f450449fca671d4668b87f9aadb53 Mon Sep 17 00:00:00 2001 From: Tim Stoakes Date: Sun, 16 Sep 2012 09:31:54 +0200 Subject: [PATCH] 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. --- curs_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1