Logtalk 2.27.0 files.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1539 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
pmoura
2006-02-10 17:44:05 +00:00
parent 42ca7aa79f
commit 9fe4d26c59
294 changed files with 3358 additions and 1376 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,11 +1,11 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Logtalk - Object oriented extension to Prolog
% Release 2.26.2
% Release 2.27.0
%
% configuration file for YAP Prolog 4.3.23 and later versions
%
% last updated: December 19, 2005
% last updated: January 12, 2006
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -319,9 +319,17 @@ forall(Generate, Test) :-
'$lgt_member_var'(V, T).
'$lgt_proper_list'([]).
'$lgt_proper_list'([_| List]) :-
'$lgt_proper_list'(List).
'$lgt_is_list'([]) :-
!.
'$lgt_is_list'([_| Tail]) :-
'$lgt_is_list'(Tail).
'$lgt_is_proper_list'(List) :-
List == [], !.
'$lgt_is_proper_list'([_| Tail]) :-
nonvar(Tail),
'$lgt_is_proper_list'(Tail).
'$lgt_reverse'(List, Reversed) :-