summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xBuild/source/texk/web2c/tests/fix-changefile-lines.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Build/source/texk/web2c/tests/fix-changefile-lines.py b/Build/source/texk/web2c/tests/fix-changefile-lines.py
index 4ba0f0cb523..1f763fbda99 100755
--- a/Build/source/texk/web2c/tests/fix-changefile-lines.py
+++ b/Build/source/texk/web2c/tests/fix-changefile-lines.py
@@ -122,9 +122,6 @@ class ChangeReader:
while self._pos < len(self._lines):
line = self._lines[self._pos]
- if line.startswith("@y"):
- eprint(f"! Where is the matching @z?. (l. {self._pos+1} of change file)")
- sys.exit(1)
if line.startswith("@x"):
self._chunk_start = self._pos
while True:
@@ -137,7 +134,6 @@ class ChangeReader:
self._match_lines = self._lines[
self._chunk_start + 1 : self._pos
]
- self._pos += 1
return True
elif line.startswith("@x") or line.startswith("@z"):
eprint(f"! Where is the matching @y?. (l. {self._pos+1} of change file)")