commit 0286ba436e1ee92fd3b0459d5d6afa513e9804b0
parent c86f714a151039a6d794288e663dd2a734b44073
Author: Chris Allegretta <chrisa@asty.org>
Date: Mon, 7 Aug 2000 14:58:26 +0000
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
Diffstat:
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/cut.c b/cut.c
@@ -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))
diff --git a/po/nano.pot b/po/nano.pot
@@ -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"