2009-10-27 Chris Allegretta <chrisa@asty.org>
* browser.c (browser_init): Set column width to something sane when initializing in a directory with no file entries. Fixes Savannah bug 24163 found (and initial patch) by Paul Wise. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4414 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
d233e7e240
commit
a535cecd77
|
@ -1,3 +1,8 @@
|
||||||
|
2009-10-27 Chris Allegretta <chrisa@asty.org>
|
||||||
|
* browser.c (browser_init): Set column width to something sane when
|
||||||
|
initializing in a directory with no file entries. Fixes Savannah
|
||||||
|
bug 24163 found (and initial patch) by Paul Wise.
|
||||||
|
|
||||||
2009-09-15 Chris Allegretta <chrisa@asty.org>
|
2009-09-15 Chris Allegretta <chrisa@asty.org>
|
||||||
* winio.c: Clean up some unused variables from the soft wrapping code.
|
* winio.c: Clean up some unused variables from the soft wrapping code.
|
||||||
|
|
||||||
|
|
|
@ -534,9 +534,9 @@ void browser_init(const char *path, DIR *dir)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If width isn't initialized yet, and we've taken up only one line,
|
/* If width isn't initialized yet, and we've taken up only one line,
|
||||||
* it means that width is equal to (COLS % longest). */
|
* it means that width is equal to longest. */
|
||||||
if (width == 0)
|
if (width == 0)
|
||||||
width = COLS % longest;
|
width = longest;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Determine the shortcut key corresponding to the values of kbinput
|
/* Determine the shortcut key corresponding to the values of kbinput
|
||||||
|
|
Loading…
Reference in New Issue