diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | awkgram.c | 2 | ||||
-rw-r--r-- | awkgram.y | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Sun Feb 13 20:16:04 2011 Arnold D. Robbins <arnold@skeeve.com> + + * awkgram.y (check_funcs): Update warning about never called to say + "never called directly" since it could be called indirectly. + Sun Feb 13 07:12:50 2011 John Haque <j.eh@mchsi.com> * profile.c (pprint): In case Op_indirect_func_call, pop off @@ -6937,7 +6937,7 @@ check_funcs() _("function `%s' called but never defined"), fp->name); #endif if (do_lint && fp->used == 0) { - lintwarn(_("function `%s' defined but never called"), + lintwarn(_("function `%s' defined but never called directly"), fp->name); } } @@ -4290,7 +4290,7 @@ check_funcs() _("function `%s' called but never defined"), fp->name); #endif if (do_lint && fp->used == 0) { - lintwarn(_("function `%s' defined but never called"), + lintwarn(_("function `%s' defined but never called directly"), fp->name); } } |