Commit e59fc829 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

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
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -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;
......
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