prolog_flag executable (obs from Aubrey Barnard).

This commit is contained in:
Vitor Santos Costa
2009-12-10 01:16:29 +00:00
parent 1be390d31a
commit ac2cf2434a
3 changed files with 19 additions and 1 deletions

View File

@@ -183,6 +183,9 @@ yap_flag(fast,off) :- !, set_value('$fast',[]).
% do or do not machine code
yap_flag(argv,L) :- '$argv'(L).
% do or do not machine code
yap_flag(executable,L) :- '$executable'(L).
% hide/unhide atoms
yap_flag(hide,Atom) :- !, hide(Atom).
yap_flag(unhide,Atom) :- !, unhide(Atom).
@@ -887,6 +890,7 @@ yap_flag(dialect,yap).
V = dollar_as_lower_case ;
V = double_quotes ;
V = encoding ;
V = executable ;
% V = fast ;
V = fileerrors ;
V = float_format ;