get rid of annoying debugging message.
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@697 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
@@ -364,7 +364,7 @@ writeTerm(Term t, int p, int depth, int rinfixarg)
|
||||
/* context priority */
|
||||
|
||||
{
|
||||
if (*max_depth != 0 && depth > *max_depth) {
|
||||
if (max_depth != 0 && depth > max_depth) {
|
||||
putAtom(Yap_LookupAtom("..."));
|
||||
return;
|
||||
}
|
||||
@@ -423,7 +423,7 @@ writeTerm(Term t, int p, int depth, int rinfixarg)
|
||||
int new_depth = depth + 1;
|
||||
long sl= 0;
|
||||
|
||||
if (*max_list && eldepth > *max_list) {
|
||||
if (max_list && eldepth > max_list) {
|
||||
putAtom(Yap_LookupAtom("..."));
|
||||
wrputc(']');
|
||||
lastw = separator;
|
||||
|
Reference in New Issue
Block a user