[m-users.] Inst problem
Volker Wysk
post at volker-wysk.de
Sat Nov 1 21:48:32 AEDT 2025
Forgot to mark the line. Here it is:
Am Samstag, dem 01.11.2025 um 11:45 +0100 schrieb Volker Wysk:
> absolute_path_p(Path, Res, !IO) :-
> (
> if Path ^ abs = yes
> then Res = iosupp.ok(Path)
> else dirsupp.current_directory_p(Res1, !IO),
> (
> Res1 = ok(Cwd),
> Res = ok(path(yes, Cwd ^ comps ++ Path ^ comps))
> ;
> Res1 = iosupp.error(Err),
> Res = iosupp.error(Err) % <--- HERE IS LINE 1065
> )
> ).
Volker
More information about the users
mailing list