From 35a541991efec815dd7c7aa81bf2bb2e90e68749 Mon Sep 17 00:00:00 2001 From: Pietro Cerutti Date: Wed, 17 Apr 2019 12:03:22 +0000 Subject: [PATCH] Fix capitalization (now consistent with the respective code in pager.c) --- index.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.c b/index.c index 2140c6cfd..427561c89 100644 --- a/index.c +++ b/index.c @@ -3142,11 +3142,11 @@ int mutt_index_menu(void) case OP_GROUP_REPLY: case OP_GROUP_CHAT_REPLY: { - SendFlags replyFlags = SEND_REPLY; + SendFlags replyflags = SEND_REPLY; if (op == OP_GROUP_REPLY) - replyFlags |= SEND_GROUP_REPLY; + replyflags |= SEND_GROUP_REPLY; else - replyFlags |= SEND_GROUP_CHAT_REPLY; + replyflags |= SEND_GROUP_CHAT_REPLY; if (!prereq(Context, menu, CHECK_IN_MAILBOX | CHECK_MSGCOUNT | CHECK_VISIBLE | CHECK_ATTACH)) break; struct EmailList el = STAILQ_HEAD_INITIALIZER(el); @@ -3155,7 +3155,7 @@ int mutt_index_menu(void) { mutt_check_traditional_pgp(&el, &menu->redraw); } - ci_send_message(replyFlags, NULL, NULL, Context, &el); + ci_send_message(replyflags, NULL, NULL, Context, &el); el_free(&el); menu->redraw = REDRAW_FULL; break; -- 2.40.0