From 56ef6d30b1152f69f6138e9df74b7859b794ea9d Mon Sep 17 00:00:00 2001 From: John Kerl Date: Tue, 1 Feb 2022 00:14:02 -0500 Subject: [PATCH] --nidx --fs x should be the same as --fs x --nidx (#912) * Fix multiple on-line-help issues from #907 * build-artifacts for previous commit * --nidx --fs x should be the same as --fs x --nidx --- internal/pkg/cli/option_parse.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/internal/pkg/cli/option_parse.go b/internal/pkg/cli/option_parse.go index 900728369b..a9abf650f0 100644 --- a/internal/pkg/cli/option_parse.go +++ b/internal/pkg/cli/option_parse.go @@ -1086,10 +1086,6 @@ var FileFormatFlagSection = FlagSection{ parser: func(args []string, argc int, pargi *int, options *TOptions) { options.ReaderOptions.InputFileFormat = "nidx" options.WriterOptions.OutputFileFormat = "nidx" - options.ReaderOptions.IFS = " " - options.WriterOptions.OFS = " " - options.ReaderOptions.ifsWasSpecified = true - options.WriterOptions.ofsWasSpecified = true *pargi += 1 }, },