mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 15:29:16 +02:00
* Show --stop-on-parser-error in help
git-svn-id: trunk@43564 -
This commit is contained in:
parent
77103fe7f2
commit
f7d6192905
@ -169,6 +169,8 @@ resourcestring
|
||||
SUsageOption190 = ' e.g. --package=fcl';
|
||||
SUsageOption200 = '--project=file Use file as project file';
|
||||
SUsageOption210 = '--show-private Show private methods.';
|
||||
SUsageOption215 = '--stop-on-parser-error';
|
||||
SUsageOption215A = ' Stop when a parser error occurs. Default is to ignore parser errors.';
|
||||
SUsageOption220 = '--warn-no-node Warn if no documentation node was found.';
|
||||
SUsageOption230 = '--mo-dir=dir Set directory where language files reside to dir';
|
||||
SUsageOption240 = '--parse-impl (Experimental) try to parse implementation too';
|
||||
|
@ -98,6 +98,8 @@ begin
|
||||
Writeln(SUsageOption190);
|
||||
Writeln(SUsageOption200);
|
||||
Writeln(SUsageOption210);
|
||||
Writeln(SUsageOption215);
|
||||
Writeln(SUsageOption215A);
|
||||
Writeln(SUsageOption220);
|
||||
Writeln(SUsageOption230);
|
||||
Writeln(SUsageOption240);
|
||||
@ -392,7 +394,7 @@ end;
|
||||
Procedure TFPDocApplication.DoRun;
|
||||
|
||||
begin
|
||||
ExceptionExitCode:=1;
|
||||
ExceptionExitCode:=1;
|
||||
try
|
||||
{$IFDEF Unix}
|
||||
gettext.TranslateResourceStrings('/usr/local/share/locale/%s/LC_MESSAGES/fpdoc.mo');
|
||||
|
Loading…
Reference in New Issue
Block a user