this is not allowed in oberon-2, assignment replaced with COPY.

This commit is contained in:
Norayr Chilingarian 2024-07-01 15:46:10 +04:00
parent adf12780d1
commit 519db9223c

View file

@ -49,7 +49,7 @@ END getSrcRelPath;
PROCEDURE mkConfDirPath(home: ARRAY OF CHAR; VAR path: ARRAY OF CHAR); PROCEDURE mkConfDirPath(home: ARRAY OF CHAR; VAR path: ARRAY OF CHAR);
BEGIN BEGIN
confDir := home; COPY(home, confDir);
Strings.Append("/", path); Strings.Append("/", path);
Strings.Append(vpkSettings.vpkConfDir, path); Strings.Append(vpkSettings.vpkConfDir, path);
END mkConfDirPath; END mkConfDirPath;