Merge pull request #1899 from triska/master
remove another !/0 which is now no longer necessary due to improved indexing
This commit is contained in:
@@ -426,7 +426,6 @@ nth1(N, Es0, E) :-
|
|||||||
|
|
||||||
skipn(N0, Es0,Es, Xs0,Xs) :-
|
skipn(N0, Es0,Es, Xs0,Xs) :-
|
||||||
N0>0,
|
N0>0,
|
||||||
!, % should not be necessary #1028
|
|
||||||
N1 is N0-1,
|
N1 is N0-1,
|
||||||
Es0 = [E|Es1],
|
Es0 = [E|Es1],
|
||||||
Xs0 = [E|Xs1],
|
Xs0 = [E|Xs1],
|
||||||
|
|||||||
Reference in New Issue
Block a user