2013-01-02 Mike Frysinger <vapier@gentoo.org>

* src/files.c: (cwd_tab_completion): Remove unnecessary variables



git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4558 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
Chris Allegretta 2013-01-03 04:50:49 +00:00
parent 1642e6a368
commit 2a76b434fc
2 changed files with 3 additions and 6 deletions

View File

@ -1,3 +1,6 @@
2013-01-02 Mike Frysinger <vapier@gentoo.org>
* src/files.c: (cwd_tab_completion): Remove unnecessary variables
2013-01-02 Eitan Adler <lists@eitanadler.com> 2013-01-02 Eitan Adler <lists@eitanadler.com>
* configure.ac: Remove unnecessary checks * configure.ac: Remove unnecessary checks
* src/nano.h, NEWS: Fix redundant wording * src/nano.h, NEWS: Fix redundant wording

View File

@ -2613,9 +2613,6 @@ char **cwd_tab_completion(const char *buf, bool allow_files, size_t
*num_matches, size_t buf_len) *num_matches, size_t buf_len)
{ {
char *dirname = mallocstrcpy(NULL, buf), *filename; char *dirname = mallocstrcpy(NULL, buf), *filename;
#ifndef DISABLE_OPERATINGDIR
size_t dirnamelen;
#endif
size_t filenamelen; size_t filenamelen;
char **matches = NULL; char **matches = NULL;
DIR *dir; DIR *dir;
@ -2654,9 +2651,6 @@ char **cwd_tab_completion(const char *buf, bool allow_files, size_t
return NULL; return NULL;
} }
#ifndef DISABLE_OPERATINGDIR
dirnamelen = strlen(dirname);
#endif
filenamelen = strlen(filename); filenamelen = strlen(filename);
while ((nextdir = readdir(dir)) != NULL) { while ((nextdir = readdir(dir)) != NULL) {