mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 12:39:36 +02:00
fcl-passrc: fixed compile under pas2js
git-svn-id: trunk@42290 -
This commit is contained in:
parent
b8369409bc
commit
02b66457f5
@ -620,7 +620,7 @@ end;
|
||||
{$IF FPC_FULLVERSION<30301}
|
||||
Function SplitCommandLine(S: String) : TStringDynArray;
|
||||
|
||||
Function GetNextWord : RawByteString;
|
||||
Function GetNextWord : String;
|
||||
|
||||
Const
|
||||
WhiteSpace = [' ',#9,#10,#13];
|
||||
@ -629,7 +629,7 @@ Function SplitCommandLine(S: String) : TStringDynArray;
|
||||
Var
|
||||
Wstart,wend : Integer;
|
||||
InLiteral : Boolean;
|
||||
LastLiteral : AnsiChar;
|
||||
LastLiteral : Char;
|
||||
|
||||
Procedure AppendToResult;
|
||||
|
||||
@ -670,7 +670,7 @@ Function SplitCommandLine(S: String) : TStringDynArray;
|
||||
end;
|
||||
|
||||
Var
|
||||
W : RawByteString;
|
||||
W : String;
|
||||
len : Integer;
|
||||
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user