make fileerrors on default

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1241 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc 2005-02-08 18:14:30 +00:00
parent 49c8efc0df
commit ab686d4ebe
2 changed files with 3 additions and 2 deletions

View File

@ -454,9 +454,9 @@ PlIOError (yap_error_number type, Term culprit, char *who)
if (Yap_GetValue(Yap_LookupAtom("fileerrors")) == MkIntTerm(1)) {
Yap_Error(type, culprit, who);
/* and fail */
return(FALSE);
return FALSE;
} else {
return(FALSE);
return FALSE;
}
}

View File

@ -47,6 +47,7 @@ true :- true.
true
),
'$set_yap_flags'(10,0),
set_value(fileerrors,1),
set_value('$gc',on),
set_value('$verbose',on),
('$exit_undefp' -> true ; true),