mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 22:06:40 +02:00
* Separate treatment of verbose option
git-svn-id: trunk@28454 -
This commit is contained in:
parent
292ab82fc5
commit
c668e4d724
@ -373,7 +373,13 @@ begin
|
|||||||
Verbose(V_ERROR,'Illegal command-line option : '+O)
|
Verbose(V_ERROR,'Illegal command-line option : '+O)
|
||||||
else
|
else
|
||||||
begin
|
begin
|
||||||
Found:=(I<ParamCount);
|
if c=coverbose then
|
||||||
|
begin
|
||||||
|
Found:=true;
|
||||||
|
o:='';
|
||||||
|
end
|
||||||
|
else
|
||||||
|
Found:=(I<ParamCount);
|
||||||
If Not found then
|
If Not found then
|
||||||
Verbose(V_ERROR,'Option requires argument : '+O)
|
Verbose(V_ERROR,'Option requires argument : '+O)
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user