Commit 31efe99e authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

more comment fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3497 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 1c5af644
Showing with 4 additions and 4 deletions
+4 -4
...@@ -332,7 +332,7 @@ char *do_browser(char *path, DIR *dir) ...@@ -332,7 +332,7 @@ char *do_browser(char *path, DIR *dir)
dir = opendir(filelist[selected]); dir = opendir(filelist[selected]);
if (dir == NULL) { if (dir == NULL) {
/* We can't open this dir for some reason. /* We can't open this directory for some reason.
* Complain. */ * Complain. */
statusbar(_("Error reading %s: %s"), statusbar(_("Error reading %s: %s"),
filelist[selected], strerror(errno)); filelist[selected], strerror(errno));
...@@ -381,9 +381,9 @@ char *do_browser(char *path, DIR *dir) ...@@ -381,9 +381,9 @@ char *do_browser(char *path, DIR *dir)
return retval; return retval;
} }
/* The file browser front end. We check to see if inpath has a dir in /* The file browser front end. We check to see if inpath has a
* it. If it does, we start do_browser() from there. Otherwise, we * directory in it. If it does, we start do_browser() from there.
* start do_browser() from the current directory. */ * Otherwise, we start do_browser() from the current directory. */
char *do_browse_from(const char *inpath) char *do_browse_from(const char *inpath)
{ {
struct stat st; struct stat st;
......
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