IDE: filter out -? and -h again in compiler options parser. Previous changes broke it.

git-svn-id: trunk@42367 -
This commit is contained in:
juha 2013-08-07 08:56:10 +00:00
parent f13dca75fb
commit 6d2ad4be5c

View File

@ -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];