+2014-05-26 Benno Schulenberg <bensberg@justemail.net>
+ * src/cut.c (cut_line): Fix compilation with --enable-tiny.
+ * src/text.c (do_linter): Avoid a warning with --enable-tiny.
+
2014-05-25 Benno Schulenberg <bensberg@justemail.net>
* src/global.c: Cut down on the size of tiny nano, by not compiling
the function strtosc() when --disable-nanorc is given or implied.
* current line. */
void cut_line(void)
{
+#ifndef NANO_TINY
if (!openfile->mark_begin)
openfile->mark_begin = openfile->current;
+#endif
if (openfile->current != openfile->filebot)
move_to_filestruct(&cutbuffer, &cutbottom, openfile->current, 0,
}
}
blank_statusbar();
+#ifndef NANO_TINY
free_lints_and_return:
+#endif
for (tmplint = lints; tmplint != NULL; tmplint = tmplint->next) {
free(tmplint->msg);
free(tmplint->filename);