summaryrefslogtreecommitdiff
path: root/src/print.c
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2005-12-14 20:49:46 +0000
committerChong Yidong <cyd@stupidchicken.com>2005-12-14 20:49:46 +0000
commit9b98e161251e6d57205ff95ea19c2f07737f80da (patch)
tree036c919b99b84711e2fc4881ef4863be83a6ab1b /src/print.c
parentc94dca60212b9586a723dd293a02553adf052b75 (diff)
downloademacs-9b98e161251e6d57205ff95ea19c2f07737f80da.tar.gz
* print.c (print_preprocess): Go to a deeper print_depth to avoid
print_object loop.
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index d563580ddd3..ed6b402763a 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1313,7 +1313,13 @@ print_preprocess (obj)
/* Give up if we go so deep that print_object will get an error. */
/* See similar code in print_object. */
- if (print_depth >= PRINT_CIRCLE)
+ /* Because print_preprocess "follows" nested lists in a slightly
+ different order from print_object, there is a risk of giving up
+ too soon. In that case, a deeply nested circular list may cause
+ print_object to loop. Using 3 * PRINT_CIRCLE should make this
+ possibility negligible, but at some point someone will have to
+ sit down and do a more careful analysis. -- cyd */
+ if (print_depth >= 3 * PRINT_CIRCLE)
return;
/* Avoid infinite recursion for circular nested structure