From e59fc829d89baa8ab93f9be134c528546f88fc5b Mon Sep 17 00:00:00 2001
From: Chris Allegretta <chrisa@asty.org>
Date: Wed, 24 Oct 2001 18:07:58 +0000
Subject: [PATCH] Okay, now fix do_prev_word so it doesn't crash when it hits a
 blank line, it's still not perfect =/

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

diff --git a/nano.c b/nano.c
index 80685d7d..0f520c1d 100644
--- a/nano.c
+++ b/nano.c
@@ -840,7 +840,7 @@ void do_prev_word(void)
 
 	    if (i == 0) {
 		if (fileptr->prev != NULL)
-		    i = strlen(fileptr->prev->data) - 1;
+		    i = strlen(fileptr->prev->data);
 		else if (fileptr == fileage && filebot != NULL) {
 		    current_x = 0;
 		    return;
@@ -864,7 +864,7 @@ void do_prev_word(void)
 
 	}
 	if (fileptr->prev != NULL)
-	    i = strlen(fileptr->prev->data) - 1;
+	    i = strlen(fileptr->prev->data);
 	else if (fileptr == fileage && filebot != NULL) {
 	    current_x = 0;
 	    return;
-- 
GitLab