- Refactor and simplify the mouse support, modeling it after
do_mouse() for consistency. (DLR)
- Remove unneeded call to blank_edit(). (DLR)
+ browser_refresh()
+ - Simplify the for loop. (DLR)
- doc/syntax/c.nanorc:
- Since .i and .ii are preprocessed C and C++ output, colorize
them here. (Mike Frysinger)
wmove(edit, 0, 0);
- for (; i < filelist_len && line <= editwinrows - 1; i++) {
+ for (; i < filelist_len && line < editwinrows; i++) {
char *disp = display_string(tail(filelist[i]), 0, longest,
FALSE);