Skip to content
Snippets Groups Projects
Commit e5dd4682 authored by dtc's avatar dtc
Browse files

Have brief_print reset cur_depth to 0, as it can be left higher after

a throw_to_monitor from continue_p which causes objects to not be
printed. From Timothy Miller.
parent 18357b18
No related branches found
No related tags found
No related merge requests found
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/print.c,v 1.4 1997/01/21 00:28:13 ram Exp $ */
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/print.c,v 1.5 1997/08/26 02:22:21 dtc Exp $ */
#include <stdio.h>
#include "print.h"
......@@ -578,6 +578,7 @@ void print(lispobj obj)
void brief_print(lispobj obj)
{
skip_newline = TRUE;
cur_depth = 0;
max_depth = 1;
max_lines = 5000;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment