From 212ab782dfeba0764c6c041d482ddb0b2dbf06f6 Mon Sep 17 00:00:00 2001
From: David Lawrence Ramsey <pooka109@gmail.com>
Date: Wed, 9 Nov 2005 02:13:07 +0000
Subject: [PATCH] simplify cut_line() further

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3119 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
---
 src/cut.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/src/cut.c b/src/cut.c
index 111d842c..52d51c7a 100644
--- a/src/cut.c
+++ b/src/cut.c
@@ -45,16 +45,12 @@ void cutbuffer_reset(void)
  * place we want to the beginning of the current line. */
 void cut_line(void)
 {
-    size_t data_len = strlen(openfile->current->data);
-
-    assert(openfile->current_x <= data_len);
-
     if (openfile->current != openfile->filebot)
 	move_to_filestruct(&cutbuffer, &cutbottom, openfile->current, 0,
 		openfile->current->next, 0);
-    else if (data_len > 0)
+    else
 	move_to_filestruct(&cutbuffer, &cutbottom, openfile->current, 0,
-		openfile->current, data_len);
+		openfile->current, strlen(openfile->current->data));
 
     openfile->placewewant = 0;
 }
-- 
GitLab