commit 3b722460b8c60c98e8d9c241e6be251d3db7240e
parent 865ad9410077b2db6b5c47ab3b9693657a5a0ae0
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Thu, 29 Jun 2006 15:08:00 +0000
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
Diffstat:
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -12,6 +12,7 @@ CVS code -
do_browser()
- Refactor and simplify the mouse support, modeling it after
do_mouse() for consistency. (DLR)
+ - Remove unneeded call to blank_edit(). (DLR)
- doc/syntax/c.nanorc:
- Since .i and .ii are preprocessed C and C++ output, colorize
them here. (Mike Frysinger)
diff --git a/src/browser.c b/src/browser.c
@@ -346,7 +346,6 @@ char *do_browser(char *path, DIR *dir)
parse_browser_input(&kbinput, &meta_key, &func_key);
} while (kbinput != NANO_EXIT_KEY);
- blank_edit();
titlebar(NULL);
edit_refresh();
curs_set(1);