tweaks: discard some conditional compilation

master
Benno Schulenberg 2017-01-09 15:09:06 +01:00
parent cf75da9888
commit 5ca765f107
2 changed files with 4 additions and 10 deletions

View File

@ -287,10 +287,7 @@ void do_uncut_text(void)
/* Update the cursor position to account for the inserted lines. */
reset_cursor();
#ifndef NANO_TINY
if (ISSET(SOFTWRAP))
ensure_line_is_visible();
#endif
ensure_line_is_visible();
refresh_needed = TRUE;

View File

@ -1278,14 +1278,11 @@ void do_insertfile(void)
openfile->current_x != was_current_x)
set_modified();
/* Update the cursor position to account for the number
* of lines inserted. */
/* Update the cursor position to account for inserted lines. */
reset_cursor();
#ifndef NANO_TINY
if (ISSET(SOFTWRAP))
ensure_line_is_visible();
#endif
ensure_line_is_visible();
refresh_needed = TRUE;
}