diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-22 20:38:35 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-22 20:38:35 +0300 |
commit | 9a0488b6224c1b25b4222e36c209a5787508ea72 (patch) | |
tree | a7ca591bdf4163a6d0285443e7a18587fdc3575f /awkgram.c | |
parent | d0f55780cc2e6078c2c28db5f1b5731a4cb580bc (diff) | |
parent | df1a290040df77fba975567050c4304e70d00737 (diff) | |
download | egawk-9a0488b6224c1b25b4222e36c209a5787508ea72.tar.gz egawk-9a0488b6224c1b25b4222e36c209a5787508ea72.tar.bz2 egawk-9a0488b6224c1b25b4222e36c209a5787508ea72.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'awkgram.c')
-rw-r--r-- | awkgram.c | 31 |
1 files changed, 12 insertions, 19 deletions
@@ -7383,22 +7383,19 @@ check_funcs() for (i = 0; i < HASHSIZE; i++) { for (fp = ftable[i]; fp != NULL; fp = fp->next) { -#ifdef REALLYMEAN - /* making this the default breaks old code. sigh. */ - if (fp->defined == 0 && ! fp->extension) { - error( - _("function `%s' called but never defined"), fp->name); - errcount++; - } -#else - if (do_lint && fp->defined == 0 && ! fp->extension) - lintwarn( - _("function `%s' called but never defined"), fp->name); -#endif + if (do_lint && ! fp->extension) { + /* + * Making this not a lint check and + * incrementing * errcount breaks old code. + * Sigh. + */ + if (fp->defined == 0) + lintwarn(_("function `%s' called but never defined"), + fp->name); - if (do_lint && fp->used == 0 && ! fp->extension) { - lintwarn(_("function `%s' defined but never called directly"), - fp->name); + if (fp->used == 0) + lintwarn(_("function `%s' defined but never called directly"), + fp->name); } } } @@ -8728,9 +8725,6 @@ install_builtins(void) bool is_alpha(int c) { -#ifdef I_DONT_KNOW_WHAT_IM_DOING - return isalpha(c); -#else /* ! I_DONT_KNOW_WHAT_IM_DOING */ switch (c) { case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g': case 'h': case 'i': case 'j': case 'k': case 'l': @@ -8745,7 +8739,6 @@ is_alpha(int c) return true; } return false; -#endif /* ! I_DONT_KNOW_WHAT_IM_DOING */ } /* is_alnum --- return true for alphanumeric, English only letters */ |