aboutsummaryrefslogtreecommitdiffstats
path: root/field.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-09-26 16:26:25 +0300
committerArnold D. Robbins <arnold@skeeve.com>2018-09-26 16:26:25 +0300
commitc25c88f583c984112055fa091d357c1b8538d5d8 (patch)
treea971b8150c89a3f00e816c14bfc6cacb2f96c1d4 /field.c
parent26b1a15e75cc1d134e8b52b0df9a5d1365e66d8f (diff)
downloadegawk-c25c88f583c984112055fa091d357c1b8538d5d8.tar.gz
egawk-c25c88f583c984112055fa091d357c1b8538d5d8.tar.bz2
egawk-c25c88f583c984112055fa091d357c1b8538d5d8.zip
Add more lint warnings.
Diffstat (limited to 'field.c')
-rw-r--r--field.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/field.c b/field.c
index 2f6eff70..ccf47df1 100644
--- a/field.c
+++ b/field.c
@@ -1038,7 +1038,7 @@ do_split(int nargs)
if (do_lint && ! warned) {
warned = true;
- lintwarn(_("split: null string for third arg is a gawk extension"));
+ lintwarn(_("split: null string for third arg is a non-standard extension"));
}
} else if (fs->stlen == 1 && (sep->re_flags & CONSTANT) == 0) {
if (fs->stptr[0] == ' ') {