nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 31efe99e209a6cf7dd3209dd5de4962706e16138
parent 1c5af644b5584b09fb86f9b2b41d28189d8998c9
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Wed, 10 May 2006 16:03:59 +0000

more comment fixes


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3497 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Msrc/browser.c | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/browser.c b/src/browser.c @@ -332,7 +332,7 @@ char *do_browser(char *path, DIR *dir) dir = opendir(filelist[selected]); if (dir == NULL) { - /* We can't open this dir for some reason. + /* We can't open this directory for some reason. * Complain. */ statusbar(_("Error reading %s: %s"), filelist[selected], strerror(errno)); @@ -381,9 +381,9 @@ char *do_browser(char *path, DIR *dir) return retval; } -/* The file browser front end. We check to see if inpath has a dir in - * it. If it does, we start do_browser() from there. Otherwise, we - * start do_browser() from the current directory. */ +/* The file browser front end. We check to see if inpath has a + * directory in it. If it does, we start do_browser() from there. + * Otherwise, we start do_browser() from the current directory. */ char *do_browse_from(const char *inpath) { struct stat st;