diff --git a/src/lib/lists.pl b/src/lib/lists.pl index 8a94ed6ac..f1b7cdd5a 100644 --- a/src/lib/lists.pl +++ b/src/lib/lists.pl @@ -396,7 +396,6 @@ skipn(N0, Es0,Es) :- N0>0, - !, % should not be necessary #1028 N1 is N0-1, Es0 = [_|Es1], skipn(N1, Es1,Es).