tweaks: avoid a compiler warning with --enable-tiny --enable-linenumbers

master
Benno Schulenberg 2021-11-10 09:11:04 +01:00
parent 496dad696c
commit 8234c22c1e
1 changed files with 2 additions and 1 deletions

View File

@ -1254,8 +1254,9 @@ void confirm_margin(void)
#ifndef NANO_TINY
/* Ensure a proper starting column for the first screen row. */
ensure_firstcolumn_is_aligned();
focusing = keep_focus;
#endif
focusing = keep_focus;
/* The margin has changed -- schedule a full refresh. */
refresh_needed = TRUE;
}