diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2019-09-22 13:52:09 -0700 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2019-09-22 13:52:09 -0700 |
| commit | 0ec5a7475ca70222af19a149ad34fe2d482ae744 (patch) | |
| tree | b39412384c6d2123ee2cef417724b5d85d1baf5b | |
| parent | 6c075036d71d3a40417e9661c655240a9b2f9fa3 (diff) | |
Removed redundant 'y' and 'n' options from -y/-n mode so quickpick works
properly and output is standardized
| -rw-r--r-- | ask.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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"; } |
