diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-06-30 21:31:54 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-06-30 21:31:54 +0300 |
commit | d74560a10b861f2a6342f07f459a34d38685e65c (patch) | |
tree | e8641df8c997fcce8c52eab68873f95c4178049b /interpret.h | |
parent | 4e38fffcac026c4d8a8fbf52258faf478dcf4db2 (diff) | |
download | egawk-d74560a10b861f2a6342f07f459a34d38685e65c.tar.gz egawk-d74560a10b861f2a6342f07f459a34d38685e65c.tar.bz2 egawk-d74560a10b861f2a6342f07f459a34d38685e65c.zip |
Fix four more lint extension warnings.
Diffstat (limited to 'interpret.h')
-rw-r--r-- | interpret.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interpret.h b/interpret.h index 478dc82a..3215833e 100644 --- a/interpret.h +++ b/interpret.h @@ -264,7 +264,7 @@ uninitialized_scalar: if (t1 == func_table) { static bool warned = false; - if (do_lint && ! warned) { + if (do_lint_extensions && ! warned) { warned = true; lintwarn(_("FUNCTAB is a gawk extension")); } @@ -282,7 +282,7 @@ uninitialized_scalar: if (t1 == symbol_table) { static bool warned = false; - if (do_lint && ! warned) { + if (do_lint_extensions && ! warned) { warned = true; lintwarn(_("SYMTAB is a gawk extension")); } |