mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-25 18:17:48 +01:00
IDE: filter out -? and -h again in compiler options parser. Previous changes broke it.
git-svn-id: trunk@42367 -
This commit is contained in:
parent
f13dca75fb
commit
6d2ad4be5c
@ -927,8 +927,8 @@ begin
|
||||
Continue;
|
||||
end;
|
||||
if (ThisLine = '') or (ThisInd > 30)
|
||||
or (Pos(' -? ', ThisLine) > 0)
|
||||
or (Pos(' -h ', ThisLine) > 0) then Continue;
|
||||
or (Pos('-? ', ThisLine) > 0)
|
||||
or (Pos('-h ', ThisLine) > 0) then Continue;
|
||||
|
||||
if i < aLines.Count-1 then begin
|
||||
NextLine := aLines[i+1];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user