Skip to content

Commit

Permalink
cleanup code
Browse files Browse the repository at this point in the history
  • Loading branch information
jmalak committed Apr 30, 2021
1 parent e6de79d commit 3745b41
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions bld/whpcvt/c/ib.c
Original file line number Diff line number Diff line change
Expand Up @@ -813,13 +813,10 @@ static void fake_hlink( FILE *file, char *label )
/***********************************************/
{
if( Hyperlink_Braces ) {
whp_fprintf( file, "<<" );
}
whp_fprintf( file, "%s%s%s", IB_BOLD_ON_STR, label, IB_BOLD_OFF_STR );
if( Hyperlink_Braces ) {
whp_fprintf( file, ">>" );
whp_fprintf( file, "<<" IB_BOLD_ON_STR "%s" IB_BOLD_OFF_STR ">> ", label );
} else {
whp_fprintf( file, IB_BOLD_ON_STR "%s" IB_BOLD_OFF_STR " ", label );
}
whp_fprintf( file, " " );
}

static void output_ctx_hdr( ctx_def *ctx )
Expand Down

0 comments on commit 3745b41

Please sign in to comment.