* find.c: Remove useless calls to paint_panel().

* panelize.c: Likewise.
This commit is contained in:
Pavel Roskin 2003-09-10 05:38:38 +00:00
parent 109b933235
commit 33078ab195
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,8 @@
2003-09-10 Pavel Roskin <proski@gnu.org>
* find.c: Remove useless calls to paint_panel().
* panelize.c: Likewise.
* screen.c (use_display_format): Set dirty flag. Remove calls
to paint_panel() where they become unneeded.

View File

@ -998,7 +998,6 @@ do_find (void)
(strchr (filename + 4, ':') - filename + 1) : 4) );
} else if (filename)
do_cd (filename, cd_exact);
paint_panel (cpanel);
select_item (cpanel);
}
if (dirname)
@ -1019,7 +1018,6 @@ do_find (void)
if (dir_and_file_set){
try_to_select (cpanel, NULL);
panel_re_sort (cpanel);
paint_panel (cpanel);
}
break;
}

View File

@ -423,5 +423,4 @@ void do_external_panelize (char *command)
close_error_pipe (0, 0);
try_to_select (cpanel, NULL);
panel_re_sort (cpanel);
paint_panel (cpanel);
}