fixed AllFilesMask for Amiga and some comment typos

git-svn-id: trunk@27057 -
This commit is contained in:
Károly Balogh 2014-03-09 17:47:21 +00:00
parent e22228ca27
commit 2f02fa6f16
2 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -41,7 +41,7 @@ const
AllowDriveSeparators : set of char = [':'];
maxExitCode = 255;
MaxPathLen = 256;
AllFilesMask = '*';
AllFilesMask = '#?';
const
UnusedHandle : LongInt = -1;