summaryrefslogtreecommitdiff
path: root/Master/tlpkg
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2021-09-13 20:11:28 +0000
committerKarl Berry <karl@freefriends.org>2021-09-13 20:11:28 +0000
commit196578bba2f73fd6a00ecec4323d1c2c4075dd0b (patch)
tree5b12f561645d83c6836409370ab4c51aa9e36ba8 /Master/tlpkg
parent49e2163a0119b684d9fd00bd700779e4134e9a30 (diff)
typo in \s
git-svn-id: svn://tug.org/texlive/trunk@60503 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-xMaster/tlpkg/bin/cmp-textfiles2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/cmp-textfiles b/Master/tlpkg/bin/cmp-textfiles
index 133be7bd0bd..98b381257fb 100755
--- a/Master/tlpkg/bin/cmp-textfiles
+++ b/Master/tlpkg/bin/cmp-textfiles
@@ -40,7 +40,7 @@ sub read_file {
open (my $FILE, $fname) || die "open($fname) failed: $!";
while (<$FILE>) {
s/\r\n?/\n/g;
- next if /^\*$/; # ignore blank lines.
+ next if /^\s*$/; # ignore blank lines.
next if /^\s*%%\s*$/; # ignore %% lines, see above.
#warn "line is |$_|";
$ret .= $_;