more fixes

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@2176 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc
2008-03-31 22:56:22 +00:00
parent 407b94d5b6
commit 5b6e8e742b
9 changed files with 50 additions and 8 deletions

View File

@@ -76,6 +76,9 @@ otherwise.
:- dynamic prolog:'$user_defined_flag'/2.
:- multifile prolog:debug_action_hook/1.
:- source.
lists:append([], L, L).
lists:append([H|T], L, [H|R]) :-
@@ -99,6 +102,8 @@ lists:member(X,[X|_]).
lists:member(X,[_|L]) :-
lists:member(X,L).
:- no_source.
:- ['protect.yap'].