/* Move text from the current filestruct into the cutbuffer. */
void do_cut_text_void(void)
{
+#ifndef NANO_TINY
add_undo(CUT, openfile);
+#endif
do_cut_text(
#ifndef NANO_TINY
FALSE, FALSE, FALSE
/* Cut from the current cursor position to the end of the file. */
void do_cut_till_end(void)
{
+#ifndef NANO_TINY
add_undo(CUTTOEND, openfile);
+#endif
do_cut_text(FALSE, TRUE, FALSE);
}
#endif /* !NANO_TINY */
newnode->filebot = NULL;
newnode->edittop = NULL;
newnode->current = NULL;
+#ifndef NANO_TINY
newnode->last_action = OTHER;
+#endif
return newnode;
}