1
1

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

Этот коммит содержится в:
Benno Schulenberg 2018-05-23 12:00:43 +02:00
родитель 408d9b8708
Коммит 84f8df2df8

Просмотреть файл

@ -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) {