aboutsummaryrefslogtreecommitdiffstats
path: root/test/longwrds.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/longwrds.awk')
-rw-r--r--test/longwrds.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/longwrds.awk b/test/longwrds.awk
index d4b4d92d..77654bb0 100644
--- a/test/longwrds.awk
+++ b/test/longwrds.awk
@@ -9,7 +9,7 @@ BEGIN {
{
for (i = 1; i <= NF; i++) {
tmp = tolower($i)
- if (0 != (pos = match(tmp, /([a-z]|-)+/)))
+ if (0 != (pos = match(tmp, /([[:lower:]]|-)+/)))
used[substr(tmp, pos, RLENGTH)] = 1
}
}