From: David Lawrence Ramsey Date: Tue, 4 Jul 2006 23:44:17 +0000 (+0000) Subject: more comment fixes X-Git-Tag: v1.9.99pre1~124 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=3528a034f2f1f06a7827209f21b60a5f59d56a94;p=nano.git more comment fixes git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3737 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/src/browser.c b/src/browser.c index 5661d0bf..2a3f1597 100644 --- a/src/browser.c +++ b/src/browser.c @@ -78,7 +78,6 @@ char *do_browser(char *path, DIR *dir) path = mallocstrassn(path, get_full_path(path)); - /* Assume that path exists and ends with a slash. */ assert(path != NULL && path[strlen(path) - 1] == '/'); /* Get the file list. */ @@ -355,10 +354,10 @@ char *do_browser(char *path, DIR *dir) if (abort) break; - /* Display the file list if we don't have a key, or if we do - * have a key and the selected file has changed. Don't display - * it if we selected a directory in prev_dir, since the file - * list will have already been displayed then. */ + /* Display the file list if we don't have a key, or if the + * selected file has changed. Don't display it if we selected a + * directory in prev_dir, since the file list has already been + * displayed in that case. */ if ((kbinput == ERR && !found_prev_dir) || old_selected != selected) browser_refresh(); diff --git a/src/help.c b/src/help.c index d94f2ee1..0b6a2963 100644 --- a/src/help.c +++ b/src/help.c @@ -148,8 +148,8 @@ void do_help(void (*refresh_func)(void)) if (abort) break; - /* Display the help text if we don't have a key, or if we do - * have a key and the help text has moved. */ + /* Display the help text if we don't have a key, or if the help + * text has moved. */ if (kbinput == ERR || line != old_line) { blank_edit();