Commit 296ee153 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

simplify

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3707 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 3 additions and 6 deletions
+3 -6
......@@ -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) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment