commit a43827d1cbb3c6f67e2b0871849f32b14066a90d
parent 224b6d5b77ad23cfdb87d6f7cd65f435fe2a75c5
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Sun, 2 Jul 2006 21:12:58 +0000
more comment fixes
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3725 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/src/browser.c b/src/browser.c
@@ -445,11 +445,10 @@ char *do_browse_from(const char *inpath)
/* Set filelist to the list of files contained in the directory path,
* set filelist_len to the number of files in that list, and set longest
- * to the width in columns of the longest filename in that list, up to
- * COLS (but at least 15). We need 8 columns to display a filename
- * plus "--", "(dir)" or a file size with padding. We need 15 columns
- * to display ".." plus "(parent dir)" with padding. Assume path exists
- * and is a directory. */
+ * to the width in columns of the longest filename in that list, at
+ * least 15 and at most COLS. We need at least 15 columns to display
+ * ".. (parent dir)", as Pico does. Assume path exists and is a
+ * directory. */
void browser_init(const char *path, DIR *dir)
{
const struct dirent *nextdir;
@@ -581,8 +580,8 @@ void browser_refresh(void)
char *disp = display_string(filetail, dots ? filetaillen -
longest + 11 : 0, longest, FALSE);
/* If we put an ellipsis before the filename, reserve 8
- * columns for "(dir)" or the file size with padding,
- * plus 3 columns for the ellipsis. */
+ * columns for "--", "(dir)", or the file size, plus 3
+ * columns for the ellipsis. */
/* Highlight the currently selected file or directory. */
if (i == selected)