From c38f892c02c63102e8411acf2d0cbabdcc27ee3d Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Thu, 16 May 2013 11:30:05 +0300 Subject: Bug fix in cut program example code. --- doc/gawk.info | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/gawk.info') diff --git a/doc/gawk.info b/doc/gawk.info index b2b6132a..6685ba83 100644 --- a/doc/gawk.info +++ b/doc/gawk.info @@ -15551,7 +15551,7 @@ the next field also has data, then the separator character is written out between the fields: { - if (by_fields && suppress && index($0, FS) != 0) + if (by_fields && suppress && index($0, FS) == 0) next for (i = 1; i <= nfields; i++) { -- cgit v1.2.3