blob: 89ba5b130d0144be7b4e21559ac9b659eeb85b73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#!/bin/sh -
#
# Check spelling in comments and quoted strings from the source files.
t=__wt.$$
trap 'rm -f $t; exit 0' 0 1 2 3 13 15
# Insulate against locale-specific sort order
LC_ALL=C
export LC_ALL
# If aspell has not been installed, quit
type aspell > /dev/null 2>&1 || {
echo 'skipped: aspell not found'
exit 0
}
check() {
aspell --mode=ccpp --lang=en list < ../$1 |
sort -u |
comm -23 /dev/stdin s_string.ok > $t
test -s $t && {
echo "==== $1"
cat $t
}
}
# List of files to spellchk.
l=`(cd .. &&
find examples ext src test -name '*.[chisy]' &&
find src -name '*.in')`
for f in $l; do
check $f
done
exit 0
|