aboutsummaryrefslogtreecommitdiffstats
path: root/field.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2021-04-28 22:03:40 +0300
committerArnold D. Robbins <arnold@skeeve.com>2021-04-28 22:03:40 +0300
commitd73e542791ccb18380cd836b8ea4a4a4b3535538 (patch)
tree3058fe7c80f472872291d9c311b4d492b058c280 /field.c
parent92c5c36bc42aa1ccf6ccc8defc4f372b6de92111 (diff)
downloadegawk-d73e542791ccb18380cd836b8ea4a4a4b3535538.tar.gz
egawk-d73e542791ccb18380cd836b8ea4a4a4b3535538.tar.bz2
egawk-d73e542791ccb18380cd836b8ea4a4a4b3535538.zip
Make booleans just special numbers.
Diffstat (limited to 'field.c')
-rw-r--r--field.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/field.c b/field.c
index 2bd58863..c21046b9 100644
--- a/field.c
+++ b/field.c
@@ -1019,7 +1019,6 @@ do_split(int nargs)
assoc_clear(arr);
src = TOP_STRING();
- warn_bool("split", 1, src);
if (src->stlen == 0) {
/*
* Skip the work if first arg is the null string.
@@ -1097,7 +1096,6 @@ do_patsplit(int nargs)
_("%s: cannot use %s as second argument"));
src = TOP_STRING();
- warn_bool("patsplit", 1, src);
if ((sep->flags & REGEX) != 0)
sep = sep->typed_re;