Skip to content

Commit 889e43b

Browse files
committed
[check] Add missing semicolon (for BSD compatibility)
1 parent 628ded4 commit 889e43b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/check-source.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ done | fail 'subclause without siblings' || failed=1
166166
for f in $texlibdesc; do
167167
sed -n '/^\\pnum/{h;:x;n;/^\\index/b x;/^\\\(constraints\|mandates\|expects\|effects\|sync\|ensures\|returns\|throws\|complexity\|remarks\|errors\)/{x;/\n/{x;=;p;};d;};/^\\pnum/D;H;b x;}' $f |
168168
# prefix output with filename and line
169-
sed '/^[0-9]\+$/{N;s/\n/:/}' | sed "s/.*/$f:&/"
169+
sed '/^[0-9]\+$/{N;s/\n/:/;}' | sed "s/.*/$f:&/"
170170
done |
171171
fail '\\pnum missing' || failed=1
172172

0 commit comments

Comments
 (0)