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:
Mark Thom
2023-07-21 23:26:20 -06:00
committed by GitHub

View File

@@ -426,7 +426,6 @@ nth1(N, Es0, E) :-
skipn(N0, Es0,Es, Xs0,Xs) :-
N0>0,
!, % should not be necessary #1028
N1 is N0-1,
Es0 = [E|Es1],
Xs0 = [E|Xs1],