From 588f8d69a9f01cf2359f959c0f00600681bf9177 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Thu, 25 Jul 2019 18:18:08 -0700 Subject: [PATCH] Fix accidental fall-through for if aborted. If was aborted, it was falling through to the function. This problem was introduced 19 years when the case was moved below . Previously it fell through to the default case which beeped. --- enter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/enter.c b/enter.c index ccfdb4c7..04276a07 100644 --- a/enter.c +++ b/enter.c @@ -718,6 +718,7 @@ int _mutt_enter_string (char *buf, size_t buflen, int col, LastKey = event.ch; goto self_insert; } + break; } case OP_EDITOR_TRANSPOSE_CHARS: -- 2.40.0