aboutsummaryrefslogtreecommitdiffstats
path: root/builtin.c
diff options
context:
space:
mode:
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) {