Commit 2af39040 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

Oops, missed one loop

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@561 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 1 addition and 2 deletions
+1 -2
......@@ -921,8 +921,7 @@ void do_wrap(filestruct * inptr, char input_char)
space or tab, then null terminate it so we can strcat it
to hell */
while ((inptr->next->data[non] == ' '
|| inptr->next->data[non] == '\t')
&& inptr->next->data[non] != 0)
|| inptr->next->data[non] == '\t'))
p[non] = inptr->next->data[non++];
p[non] = 0;
......
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