depends upon nanorc support, plus many other tweaks.
* src/global.c (strtosc): Fix compilation with --enable-tiny
--enable-histories --enable-nanorc.
+ * src/text.c: Fix compilation with --enable-tiny --enable-wrapping.
2014-06-19 Benno Schulenberg <bensberg@justemail.net>
* src/nano.c (window_init): Rename 'no_more_space()' to 'more_space()'
/* If after_break doesn't end in a blank, make sure it ends in a
* space. */
if (!is_blank_mbchar(end)) {
+#ifndef NANO_TINY
add_undo(ADD);
+#endif
line_len++;
line->data = charealloc(line->data, line_len + 1);
line->data[line_len - 1] = ' ';
after_break_len++;
openfile->totsize++;
openfile->current_x++;
+#ifndef NANO_TINY
update_undo(ADD);
+#endif
}
next_line = line->next->data;