Really fix broken debug output.

[SVN r16202]
This commit is contained in:
Dave Abrahams 2002-11-11 23:32:42 +00:00
parent 49f31120ce
commit 466bdef914
2 changed files with 4 additions and 2 deletions

View File

@ -1127,6 +1127,8 @@ debug_compile( int which, char *s, FRAME* frame )
{
int i;
print_source_line( frame->procedure );
i = (level+1)*2;
while ( i > 35 )
{
@ -1134,7 +1136,6 @@ debug_compile( int which, char *s, FRAME* frame )
i -= 35;
}
print_source_line( frame->procedure );
printf( "%*.*s ", i, i, indent );
}

View File

@ -1127,6 +1127,8 @@ debug_compile( int which, char *s, FRAME* frame )
{
int i;
print_source_line( frame->procedure );
i = (level+1)*2;
while ( i > 35 )
{
@ -1134,7 +1136,6 @@ debug_compile( int which, char *s, FRAME* frame )
i -= 35;
}
print_source_line( frame->procedure );
printf( "%*.*s ", i, i, indent );
}