diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-02-13 20:17:41 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-02-13 20:17:41 +0200 |
commit | 29d0afc3d5b29804f94cb142d949a83d7f1fbd39 (patch) | |
tree | 00849633de8fad428b05068d43ce28a5b594bdb7 | |
parent | 0d6a16858bb4ec2869ab7a85f541f96957279e46 (diff) | |
download | egawk-29d0afc3d5b29804f94cb142d949a83d7f1fbd39.tar.gz egawk-29d0afc3d5b29804f94cb142d949a83d7f1fbd39.tar.bz2 egawk-29d0afc3d5b29804f94cb142d949a83d7f1fbd39.zip |
Minor message fix.
-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); } } |