* Fixed bug ID #24674

git-svn-id: trunk@26577 -
This commit is contained in:
michael 2014-01-24 15:14:02 +00:00
parent 9bfe0b5e2a
commit fa4aa67f35

View File

@ -333,7 +333,8 @@ begin
else
begin // short options have form '-o value'
If (I<ParamCount) then
Result:=Params[I+1];
if (Copy(Params[I+1],1,1)<>'-') then
Result:=Params[I+1];
end;
end;
end;