1
1

tweaks: avoid incrementing a variable that won't be used again later

Этот коммит содержится в:
Benno Schulenberg 2017-12-02 17:55:27 +01:00
родитель 97bdf13b59
Коммит 6abb551fdd

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

@ -1623,10 +1623,9 @@ bool do_wrap(filestruct *line)
#ifndef NANO_TINY #ifndef NANO_TINY
add_undo(ADD); add_undo(ADD);
#endif #endif
line_len++; line->data = charealloc(line->data, line_len + 2);
line->data = charealloc(line->data, line_len + 1); line->data[line_len] = ' ';
line->data[line_len - 1] = ' '; line->data[line_len + 1] = '\0';
line->data[line_len] = '\0';
after_break = line->data + wrap_loc; after_break = line->data + wrap_loc;
after_break_len++; after_break_len++;
openfile->totsize++; openfile->totsize++;