Eventuell wird es einfacher/übersichtlicher, wenn du das letzte Inc(P), also das der Schleife, mit in die IFs aufnimmst
Delphi-Quellcode:
while P^ <> #0 do
if P^ = #13 then begin
Inc(Result);
if (P + 1)^ = #10 then
Inc(P);
Inc(P); {<<<}
end else if P^ = #10 then begin
Inc(Result);
Inc(P); {<<<}
end else
Inc(P); {<<<}
und dann noch etwas an der Reihenfolge veränderst.
Delphi-Quellcode:
while P^ <> #0 do
if P^ = #13 then begin
Inc(Result);
Inc(P); {<<<}
if P^ = #10 then {<<<}
Inc(P);
end else if P^ = #10 then begin
Inc(Result);
Inc(P);
end else
Inc(P);