mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 14:38:01 +02:00
Packager: Allow to load packagelinks with namespace.
git-svn-id: trunk@60144 -
This commit is contained in:
parent
9fffa25dc3
commit
8ee9cb5226
@ -399,7 +399,7 @@ procedure TLazPackageLinks.UpdateGlobalLinks;
|
||||
or (not (Filename[StartPos] in ['a'..'z','A'..'Z'])) then exit;
|
||||
inc(StartPos);
|
||||
while (StartPos<=length(Filename))
|
||||
and (Filename[StartPos] in ['a'..'z','A'..'Z','_','0'..'9']) do
|
||||
and (Filename[StartPos] in ['.','a'..'z','A'..'Z','_','0'..'9']) do
|
||||
inc(StartPos);
|
||||
PkgName:=lowercase(copy(Filename,1,StartPos-1));
|
||||
// parse -
|
||||
|
Loading…
Reference in New Issue
Block a user