anonymize singleton variables in iso_ext.pl, charsio.pl

This commit is contained in:
Mark Thom
2021-02-21 19:19:43 -07:00
parent 0ef5f7f9b1
commit f6498f2a7b
2 changed files with 3 additions and 3 deletions

View File

@@ -110,10 +110,10 @@ run_cleaners_without_handling(Cp) :-
% call_with_inference_limit
:- non_counted_backtracking end_block/4.
end_block(_, Bb, NBb, L) :-
end_block(_, Bb, NBb, _L) :-
'$clean_up_block'(NBb),
'$reset_block'(Bb).
end_block(B, Bb, NBb, L) :-
end_block(B, _Bb, NBb, L) :-
'$install_inference_counter'(B, L, _),
'$reset_block'(NBb),
'$fail'.