in do_browser(), remove unneeded call to blank_edit()

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3690 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
David Lawrence Ramsey 2006-06-29 15:08:00 +00:00
parent 865ad94100
commit 3b722460b8
2 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,7 @@ CVS code -
do_browser() do_browser()
- Refactor and simplify the mouse support, modeling it after - Refactor and simplify the mouse support, modeling it after
do_mouse() for consistency. (DLR) do_mouse() for consistency. (DLR)
- Remove unneeded call to blank_edit(). (DLR)
- doc/syntax/c.nanorc: - doc/syntax/c.nanorc:
- Since .i and .ii are preprocessed C and C++ output, colorize - Since .i and .ii are preprocessed C and C++ output, colorize
them here. (Mike Frysinger) them here. (Mike Frysinger)

View File

@ -346,7 +346,6 @@ char *do_browser(char *path, DIR *dir)
parse_browser_input(&kbinput, &meta_key, &func_key); parse_browser_input(&kbinput, &meta_key, &func_key);
} while (kbinput != NANO_EXIT_KEY); } while (kbinput != NANO_EXIT_KEY);
blank_edit();
titlebar(NULL); titlebar(NULL);
edit_refresh(); edit_refresh();
curs_set(1); curs_set(1);