* editdraw.c (edit_render): Eliminate f. It's only written

but never read.
This commit is contained in:
Andrew V. Samoilov 2001-11-28 12:31:48 +00:00
parent efe14b8bf1
commit 23bdcf3d1e
1 changed files with 0 additions and 2 deletions

View File

@ -438,10 +438,8 @@ extern int option_long_whitespace;
void edit_render (WEdit * edit, int page, int row_start, int col_start, int row_end, int col_end) void edit_render (WEdit * edit, int page, int row_start, int col_start, int row_end, int col_end)
{ {
int f = 0;
if (page) /* if it was an expose event, 'page' would be set */ if (page) /* if it was an expose event, 'page' would be set */
edit->force |= REDRAW_PAGE | REDRAW_IN_BOUNDS; edit->force |= REDRAW_PAGE | REDRAW_IN_BOUNDS;
f = edit->force & (REDRAW_PAGE | REDRAW_COMPLETELY);
if (edit->force & REDRAW_COMPLETELY) if (edit->force & REDRAW_COMPLETELY)
redraw_labels (edit->widget.parent, (Widget *) edit); redraw_labels (edit->widget.parent, (Widget *) edit);