diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-17 21:44:16 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-17 21:44:16 +0300 |
commit | adf9117f975ab24f21ea6d11e555a83f1a218bf5 (patch) | |
tree | bcfab8e962a0377f45aae7700c6208b6a54ad7fd /builtin.c | |
parent | cf79df35d1569a1c1f60c51e66e2ab44566ea4d5 (diff) | |
parent | 9842a449bf7612c763790c34be7eef39774f63be (diff) | |
download | egawk-adf9117f975ab24f21ea6d11e555a83f1a218bf5.tar.gz egawk-adf9117f975ab24f21ea6d11e555a83f1a218bf5.tar.bz2 egawk-adf9117f975ab24f21ea6d11e555a83f1a218bf5.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'builtin.c')
-rw-r--r-- | builtin.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -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) { |