Commit c021925a authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

in browser_init(), fix off-by-one error when calculating longest that

kept the rightmost column of the screen from being used


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3717 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 4 additions and 1 deletion
+4 -1
...@@ -17,6 +17,9 @@ CVS code - ...@@ -17,6 +17,9 @@ CVS code -
- After entering "..", select the directory we were in before - After entering "..", select the directory we were in before
instead of the first filename in the list, as Pico does. (DLR) instead of the first filename in the list, as Pico does. (DLR)
- Simplify screen update handling and exiting. (DLR) - Simplify screen update handling and exiting. (DLR)
browser_init()
- Fix off-by-one error when calculating longest that kept the
rightmost column of the screen from being used. (DLR)
browser_refresh() browser_refresh()
- Simplify. (DLR) - Simplify. (DLR)
- Fix problems where translated versions of "(dir)" could be - Fix problems where translated versions of "(dir)" could be
......
...@@ -466,7 +466,7 @@ void browser_init(const char *path, DIR *dir) ...@@ -466,7 +466,7 @@ void browser_init(const char *path, DIR *dir)
i++; i++;
d_len = strlenpt(nextdir->d_name); d_len = strlenpt(nextdir->d_name) + 1;
if (d_len > longest) if (d_len > longest)
longest = (d_len > COLS - 1) ? COLS - 1 : d_len; longest = (d_len > COLS - 1) ? COLS - 1 : d_len;
} }
......
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