From 37bfc4b522cb2febbebb46ade8f2e390f13a10bd Mon Sep 17 00:00:00 2001 From: PatR Date: Thu, 13 Oct 2022 11:54:11 -0700 Subject: [PATCH] more PR #897 - autounlock For the 'autounlock option', "none" is gone from the set of choices so case 'n' can't happen anymore. --- src/options.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/options.c b/src/options.c index 30efd23e2..a75ba3115 100644 --- a/src/options.c +++ b/src/options.c @@ -792,9 +792,6 @@ optfn_autounlock( || fuzzymatch(op, unlocktypes[i][0], " -_", TRUE)) { matched = TRUE; switch (*op) { - case 'n': - negated = TRUE; - break; case 'u': newflags |= AUTOUNLOCK_UNTRAP; break;