Commit 0286ba43 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

Whoops, must let check for blowing away cutbuffer get run before exit on cutting magic line

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@175 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent c86f714a
Showing with 7 additions and 2 deletions
+7 -2
......@@ -137,7 +137,7 @@ int do_cut_text(void)
#endif
check_statblank();
if (fileptr == NULL || fileptr->data == NULL || fileptr == filebot)
if (fileptr == NULL || fileptr->data == NULL)
return 0;
tmp = fileptr->next;
......@@ -150,6 +150,11 @@ int do_cut_text(void)
fprintf(stderr, _("Blew away cutbuffer =)\n"));
#endif
}
/* Must let cutbuffer get blown away first before we do this... */
if (fileptr == filebot)
return 0;
#ifndef NANO_SMALL
if (ISSET(CUT_TO_END) && !ISSET(MARK_ISSET)) {
if (current_x == strlen(current->data))
......
......@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2000-08-07 10:44-0400\n"
"POT-Creation-Date: 2000-08-07 11:03-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment