mirror of git://git.sv.gnu.org/nano.git
simplify
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3707 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
8f975a11f0
commit
296ee153b0
|
@ -330,12 +330,9 @@ char *do_browser(char *path, DIR *dir)
|
|||
/* If we've successfully opened a directory, and it's
|
||||
* "..", save the current directory in prev_dir, so that
|
||||
* we can select it later. */
|
||||
} else if (strcmp(tail(filelist[selected]),
|
||||
"..") == 0) {
|
||||
prev_dir = mallocstrcpy(NULL, filelist[selected]);
|
||||
prev_dir = mallocstrassn(prev_dir,
|
||||
striponedir(prev_dir));
|
||||
}
|
||||
} else if (strcmp(tail(filelist[selected]), "..") == 0)
|
||||
prev_dir = mallocstrcpy(NULL,
|
||||
striponedir(filelist[selected]));
|
||||
|
||||
dir = opendir(filelist[selected]);
|
||||
if (dir == NULL) {
|
||||
|
|
Loading…
Reference in New Issue