From 0ec5a7475ca70222af19a149ad34fe2d482ae744 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 22 Sep 2019 13:52:09 -0700 Subject: [PATCH] Removed redundant 'y' and 'n' options from -y/-n mode so quickpick works properly and output is standardized --- ask.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ask.c b/ask.c index 3d58db6..62f4052 100644 --- a/ask.c +++ b/ask.c @@ -389,8 +389,6 @@ int main(int argc, char *argv[]) if (yes || no) { if ((size_t)nopts + 4 >= linescap) opts = memcheck(realloc(opts, (linescap += 4)*sizeof(char*))); - opts[nopts++] = "y"; - opts[nopts++] = "n"; opts[nopts++] = "Y"; opts[nopts++] = "N"; }