From 4f111c357fb2b398aa59926930d807ad56006638 Mon Sep 17 00:00:00 2001 From: "Andrew J. Schorr" Date: Tue, 17 Oct 2017 10:32:27 -0400 Subject: Do not deprecate isarray in this release. --- builtin.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'builtin.c') 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) { -- cgit v1.2.3