Deleting a now unneeded variable.

We will need this again when one day we make a toggle between
jumping to a directory and searching for a filename fragment,
just like the ^T toggle that exists in the Search / Go-to-line
menus.  But for now, we don't need this.


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5745 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Benno Schulenberg 2016-03-19 17:13:33 +00:00
parent 01888abb22
commit 3dee81bfaa
2 changed files with 2 additions and 6 deletions

View File

@ -4,6 +4,7 @@
* src/search.c (search_init, do_replace): Don't bother setting the * src/search.c (search_init, do_replace): Don't bother setting the
current answer to the empty string, as do_prompt() can handle a NULL. current answer to the empty string, as do_prompt() can handle a NULL.
* src/browser.c (do_browser): Delete a snippet of dead code. * src/browser.c (do_browser): Delete a snippet of dead code.
* src/browser.c (do_browser): Delete an unneeded variable.
2016-03-17 Benno Schulenberg <bensberg@justemail.net> 2016-03-17 Benno Schulenberg <bensberg@justemail.net>
* src/search.c (do_research): Use the Search key bindings also during * src/search.c (do_research): Use the Search key bindings also during

View File

@ -54,8 +54,6 @@ char *do_browser(char *path, DIR *dir)
bool old_const_update = ISSET(CONST_UPDATE); bool old_const_update = ISSET(CONST_UPDATE);
char *prev_dir = NULL; char *prev_dir = NULL;
/* The directory we were in before backing up to "..". */ /* The directory we were in before backing up to "..". */
char *ans = NULL;
/* The last answer the user typed at the statusbar prompt. */
size_t old_selected; size_t old_selected;
/* The selected file we had before the current selected file. */ /* The selected file we had before the current selected file. */
functionptrtype func; functionptrtype func;
@ -69,8 +67,6 @@ char *do_browser(char *path, DIR *dir)
UNSET(CONST_UPDATE); UNSET(CONST_UPDATE);
ans = mallocstrcpy(NULL, "");
change_browser_directory: change_browser_directory:
/* We go here after we select a new directory. */ /* We go here after we select a new directory. */
@ -214,7 +210,7 @@ char *do_browser(char *path, DIR *dir)
#ifndef DISABLE_TABCOMP #ifndef DISABLE_TABCOMP
FALSE, FALSE,
#endif #endif
MGOTODIR, ans, MGOTODIR, NULL,
#ifndef DISABLE_HISTORIES #ifndef DISABLE_HISTORIES
NULL, NULL,
#endif #endif
@ -343,7 +339,6 @@ char *do_browser(char *path, DIR *dir)
SET(CONST_UPDATE); SET(CONST_UPDATE);
free(path); free(path);
free(ans);
free_chararray(filelist, filelist_len); free_chararray(filelist, filelist_len);
filelist = NULL; filelist = NULL;