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

cosmetic fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3756 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -2052,8 +2052,8 @@ void titlebar(const char *path)
size_t lenpt = strlenpt(path), start_col;
/* Don't set dots to TRUE if we have at least 1/3 the length of
* the screen in columns, minus two columns for spaces. */
dots = (space >= (COLS / 3) - 2 && lenpt >= space);
* the screen in columns. */
dots = (space >= COLS / 3 && lenpt >= space);
if (dots) {
start_col = lenpt - space + 3;
......
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