aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2019-05-22 20:59:05 +0300
committerArnold D. Robbins <arnold@skeeve.com>2019-05-22 20:59:05 +0300
commit875f2de7fd309eed6096e2f51415aa3ea3666f27 (patch)
tree9b0b073f5f522c560fbb4538a8d8d891f74ca903 /io.c
parent990649951e7fa34ae589a19ac686ffcc655d584b (diff)
downloadegawk-875f2de7fd309eed6096e2f51415aa3ea3666f27.tar.gz
egawk-875f2de7fd309eed6096e2f51415aa3ea3666f27.tar.bz2
egawk-875f2de7fd309eed6096e2f51415aa3ea3666f27.zip
Add --lint=no-ext to disable "xxx is a gawk extension" warnings.
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 3d90e71b..c49d1281 100644
--- a/io.c
+++ b/io.c
@@ -4075,7 +4075,7 @@ set_RS()
matchrec = rsrescan;
- if (do_lint && ! warned) {
+ if (do_lint_extensions && ! warned) {
lintwarn(_("multicharacter value of `RS' is a gawk extension"));
warned = true;
}