Bugfix skip-line directive with Unix line endings
This commit is contained in:
parent
21a45b06cf
commit
bb602043d2
1 changed files with 1 additions and 1 deletions
|
|
@ -2186,7 +2186,7 @@ begin
|
||||||
if ch = '!' then
|
if ch = '!' then
|
||||||
(* special comment till end of line *)
|
(* special comment till end of line *)
|
||||||
begin
|
begin
|
||||||
while not (nextChar = #13) do (* nothing *);
|
while not (nextChar in [#13, #10]) do (* nothing *);
|
||||||
readNextToken;
|
readNextToken;
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue