On Dec 16, 2005, at 11:48 AM, Leslie De Koninck wrote:
?- noprofile(call/1).
This gives me the following
ERROR: '$set_predicate_attribute'/3: No permission to modify
static_procedure `call/1'
which is not what I want...
This works better:
2 ?- system_mode(on).
Yes
3 ?- noprofile(call/1).
Yes
4 ?- system_mode(off).
--- Jan
P.s. In the system I see already:
:- noprofile((call/1,
catch/3,
once/1,
ignore/1,
call_cleanup/3,
(^)/2)).
|