diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-02-26 21:54:57 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-02-26 21:54:57 +0200 |
commit | 6cd3c8e7e6c6febc1840c381b82ead816db3921a (patch) | |
tree | 1d9e563ed528a3039c2cabde1eb7e855b73d7ad3 /eval.c | |
parent | bbbfd0cb5661d96fce8ee9d0323405655a120060 (diff) | |
download | egawk-6cd3c8e7e6c6febc1840c381b82ead816db3921a.tar.gz egawk-6cd3c8e7e6c6febc1840c381b82ead816db3921a.tar.bz2 egawk-6cd3c8e7e6c6febc1840c381b82ead816db3921a.zip |
Fix array sorting lint warning.
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1244,7 +1244,7 @@ sorted_in(void) /* we're going to make use of PROCINFO["sorted_in"] */ if (do_lint && ! warned_extension) { warned_extension = TRUE; - lintwarn(_("`PROCINFO[\"sorted_in\"]' is a gawk extension")); + lintwarn(_("sorted array traversal is a gawk extension")); } /* default result is no sorting */ |