tweaks: avoid an unused-variable warning with --enable-tiny

master
Benno Schulenberg 2018-05-23 12:00:43 +02:00
parent 408d9b8708
commit 84f8df2df8
1 changed files with 2 additions and 0 deletions

View File

@ -324,7 +324,9 @@ bool do_next_word(bool after_ends, bool allow_punct, bool update_screen)
bool started_on_word = is_word_mbchar(openfile->current->data +
openfile->current_x, allow_punct);
bool seen_space = !started_on_word;
#ifndef NANO_TINY
bool seen_word = started_on_word;
#endif
/* Move forward until we reach the start of a word. */
while (TRUE) {