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

Fix bug in last commit.

parent 0e1920c7
No related branches found
No related tags found
No related merge requests found
......@@ -835,7 +835,7 @@ function make_lines(str, attr, nl_is_hardcr)
case '\t': /* Whitespace... never wrap here. */
nl[nl.length-1].text+=' ';
nl[nl.length-1].attr+=ascii(thisattr);
while((nl[nl.length-1].text.length%8) {
while(nl[nl.length-1].text.length%8) {
nl[nl.length-1].text+=' ';
nl[nl.length-1].attr+=ascii(thisattr);
}
......
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