use new heap term representation

This commit is contained in:
Mark Thom
2021-11-14 13:39:56 -07:00
parent d0b74a95f4
commit 0404c3bd94
72 changed files with 26285 additions and 17019 deletions

View File

@@ -1,4 +1,3 @@
:- module(loader, [consult/1,
expand_goal/3,
expand_term/2,
@@ -508,7 +507,8 @@ open_file(Path, Stream) :-
; catch(open(Path, read, Stream),
error(existence_error(source_sink, _), _),
( atom_concat(Path, '.pl', ExtendedPath),
open(ExtendedPath, read, Stream) )
open(ExtendedPath, read, Stream)
)
)
).