aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2011-02-26 21:54:57 +0200
committerArnold D. Robbins <arnold@skeeve.com>2011-02-26 21:54:57 +0200
commit6cd3c8e7e6c6febc1840c381b82ead816db3921a (patch)
tree1d9e563ed528a3039c2cabde1eb7e855b73d7ad3 /eval.c
parentbbbfd0cb5661d96fce8ee9d0323405655a120060 (diff)
downloadegawk-6cd3c8e7e6c6febc1840c381b82ead816db3921a.tar.gz
egawk-6cd3c8e7e6c6febc1840c381b82ead816db3921a.tar.bz2
egawk-6cd3c8e7e6c6febc1840c381b82ead816db3921a.zip
Fix array sorting lint warning.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 75bf7d4f..1eb6d0bf 100644
--- a/eval.c
+++ b/eval.c
@@ -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 */