We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82481dc commit b8707d9Copy full SHA for b8707d9
tools/check-source.sh
@@ -108,9 +108,9 @@ grep -Hne '^\\\(change\|rationale\|effect\|difficulty\|howwide\)\s.\+$' compatib
108
fail "change marker in [diff] followed by stuff" || failed=1
109
# Fixup: sed 's/^\\\(change\|rationale\|effect\|difficulty\|howwide\)\s\(.\)/\\\1\n\2/'q
110
111
-# "template <class" (with space) in library clause.
112
-grep -ne 'template\s<class' $texlib |
113
- fail 'space between "template" and "<class"' || failed=1
+# "template <" (with space) in library clause.
+grep -ne 'template\s\+<' $texlib |
+ fail 'space between "template" and "<"' || failed=1
114
115
# "Class" heading without namespace
116
for f in $texlib; do
0 commit comments