Skip to content
Snippets Groups Projects
Commit 7d6b7f51 authored by deuce's avatar deuce
Browse files

Fix longstanding insane "unwrapping last line" bug. I believe that this

baby now *WORKS*

Next up... a usefull UI, help, docs, etc.
parent ec7d613d
No related branches found
No related tags found
No related merge requests found
......@@ -299,7 +299,7 @@ function unwrap_line(l)
}
if(old_lines!=line.length) {
/* We need to redraw everything... line(s) deleted */
for(;l>line.length;l++)
for(;l<line.length;l++)
draw_line(l);
}
return(ret);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment