From 554e956ef50f34a6ee73124db8b7392c68e31325 Mon Sep 17 00:00:00 2001 From: Markus Triska Date: Sat, 22 Jul 2023 06:52:29 +0200 Subject: [PATCH] remove another !/0 which is now no longer necessary due to improved indexing --- src/lib/lists.pl | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/lists.pl b/src/lib/lists.pl index f1b7cdd5..3d1cc6a2 100644 --- a/src/lib/lists.pl +++ b/src/lib/lists.pl @@ -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], -- 2.54.0