aboutsummaryrefslogtreecommitdiffstats
path: root/builtin.c
diff options
context:
space:
mode:
authorAndrew J. Schorr <aschorr@telemetry-investments.com>2017-10-17 10:32:27 -0400
committerAndrew J. Schorr <aschorr@telemetry-investments.com>2017-10-17 10:32:27 -0400
commit4f111c357fb2b398aa59926930d807ad56006638 (patch)
tree7f6d4b8a7fab7c2327ac16b294642ea889781141 /builtin.c
parent8140d635ccee51089aad9a04e9e128e5373377f7 (diff)
downloadegawk-4f111c357fb2b398aa59926930d807ad56006638.tar.gz
egawk-4f111c357fb2b398aa59926930d807ad56006638.tar.bz2
egawk-4f111c357fb2b398aa59926930d807ad56006638.zip
Do not deprecate isarray in this release.
Diffstat (limited to 'builtin.c')
-rw-r--r--builtin.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/builtin.c b/builtin.c
index cd270e84..98f50ddc 100644
--- a/builtin.c
+++ b/builtin.c
@@ -503,12 +503,6 @@ do_isarray(int nargs)
{
NODE *tmp;
int ret = 1;
- static bool warned = false;
-
- if (do_lint && ! warned) {
- warned = true;
- lintwarn(_("`isarray' is deprecated. Use `typeof' instead"));
- }
tmp = POP();
if (tmp->type != Node_var_array) {