From 2d03535ce03e72804539cef3b8c9a49cfbc0c696 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Mon, 26 Feb 1990 19:11:04 +0000 Subject: [PATCH] Boosted max-depth my one, 'cause it was cutting off right before the useful information when searching for function objects. Changed other immediate/short float to other immediate 0 and 1. --- ldb/print.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ldb/print.c b/ldb/print.c index a56229e10..26bb0aaf1 100644 --- a/ldb/print.c +++ b/ldb/print.c @@ -1,4 +1,4 @@ -/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/print.c,v 1.1 1990/02/24 19:37:28 wlott Exp $ */ +/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/print.c,v 1.2 1990/02/26 19:11:04 wlott Exp $ */ #include <stdio.h> #include "ldb.h" @@ -7,7 +7,7 @@ #include "vars.h" static int max_lines = 20, cur_lines = 0; -static int max_depth = 4, cur_depth = 0; +static int max_depth = 5, cur_depth = 0; static boolean dont_decend = FALSE, skip_newline = FALSE; static cur_clock = 0; @@ -18,11 +18,11 @@ static void print_obj(); char *lowtag_Names[] = { "even fixnum", "function pointer", - "other immediate", + "other immediate [0]", "list pointer", "odd fixnum", "structure pointer", - "short float", + "other immediate [1]", "other pointer" }; -- GitLab