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 2878217 commit b652db7Copy full SHA for b652db7
tools/check-source.sh
@@ -85,6 +85,10 @@ grep -n 'ucode{[^}]*[^0-9a-f}][^}]*}' $texfiles |
85
grep -n 'unicode{[^}]*[^0-9a-f}][^}]*}' $texfiles |
86
fail 'use lowercase hex digits inside \\unicode' || failed=1
87
88
+# Use \iref instead of "(\ref", except for subclause ranges
89
+grep -n '.(\\ref' $texfiles | grep -v -- "--" |
90
+ fail 'use \\iref instead of (\\ref' || failed=1
91
+
92
# Use \xrefc instead of "ISO C x.y.z"
93
grep -n "^ISO C [0-9]*\." $texfiles |
94
fail 'use \\xrefc instead' || failed=1
0 commit comments