mirror of
git://git.sv.gnu.org/nano.git
synced 2025-03-30 05:12:57 +03:00
tweaks: exclude some hidden-interface code from the tiny version
Also, reshuffle one call and drop another: the cursor has been placed fifteen lines earlier (either directly or in edit_refresh()). (Important test case: toggling softwrap.)
This commit is contained in:
parent
f147131e7c
commit
966da68228
@ -2553,6 +2553,7 @@ int main(int argc, char **argv)
|
||||
else
|
||||
place_the_cursor();
|
||||
|
||||
#ifndef NANO_TINY
|
||||
/* In barless mode, either redraw a relevant status message,
|
||||
* or overwrite a minor, redundant one. */
|
||||
if (ISSET(ZERO) && lastmessage > HUSH) {
|
||||
@ -2562,11 +2563,10 @@ int main(int argc, char **argv)
|
||||
}
|
||||
redrawwin(bottomwin);
|
||||
wnoutrefresh(bottomwin);
|
||||
wnoutrefresh(edit);
|
||||
} else if (ISSET(ZERO) && lastmessage > VACUUM)
|
||||
wredrawln(edit, editwinrows - 1, 1);
|
||||
|
||||
place_the_cursor();
|
||||
wnoutrefresh(edit);
|
||||
#endif
|
||||
|
||||
errno = 0;
|
||||
focusing = TRUE;
|
||||
|
Loading…
x
Reference in New Issue
Block a user