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
|
||||
(* special comment till end of line *)
|
||||
begin
|
||||
while not (nextChar = #13) do (* nothing *);
|
||||
while not (nextChar in [#13, #10]) do (* nothing *);
|
||||
readNextToken;
|
||||
end
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue