w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

commit 720c2e24078c64450a1b98d59903ed4253672fa9
parent adf7bb879fdf3a1a0f8e4483f2868e90cf353dd6
Author: ukai <ukai>
Date:   Wed, 14 May 2003 16:02:41 +0000

fix indent

Diffstat:
Mtable.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/table.c b/table.c @@ -3528,14 +3528,14 @@ check_relative_width(struct table *t, int maxwidth) if (n_leftcell == 0) { /* w must be identical to r */ if (w != r) - cell->fixed_width[i] = -100*r; + cell->fixed_width[i] = -100 * r; } else { if (w <= r) { /* make room for the left(width-unspecified) cell */ /* the next formula is an estimation of required width */ - w = r*cell->colspan[i]/(cell->colspan[i]-n_leftcell); - cell->fixed_width[i] = -100*w; + w = r * cell->colspan[i] / (cell->colspan[i] - n_leftcell); + cell->fixed_width[i] = -100 * w; } for (j = 0; j < cell->colspan[i]; j++) { if (rcolwidth[j + k] == 0)