mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-04 17:18:27 +02:00
fixed AllFilesMask for Amiga and some comment typos
git-svn-id: trunk@27057 -
This commit is contained in:
parent
e22228ca27
commit
2f02fa6f16
@ -130,7 +130,7 @@ begin
|
||||
delete(path,tmppos,2);
|
||||
tmppos:=pos('./',path);
|
||||
end;
|
||||
{ convert wildstart to #? }
|
||||
{ convert wildstar to #? }
|
||||
tmppos:=pos('*',path);
|
||||
while tmppos<>0 do begin
|
||||
delete(path,tmppos,1);
|
||||
@ -167,7 +167,7 @@ begin
|
||||
delete(PathConv,tmppos,2);
|
||||
tmppos:=pos('./',PathConv);
|
||||
end;
|
||||
{ convert wildstart to #? }
|
||||
{ convert wildstar to #? }
|
||||
tmppos:=pos('*',PathConv);
|
||||
while tmppos<>0 do begin
|
||||
delete(PathConv,tmppos,1);
|
||||
|
@ -41,7 +41,7 @@ const
|
||||
AllowDriveSeparators : set of char = [':'];
|
||||
maxExitCode = 255;
|
||||
MaxPathLen = 256;
|
||||
AllFilesMask = '*';
|
||||
AllFilesMask = '#?';
|
||||
|
||||
const
|
||||
UnusedHandle : LongInt = -1;
|
||||
|
Loading…
Reference in New Issue
Block a user