From e57095c789adcee4b6b236e29d94c6e33a043724 Mon Sep 17 00:00:00 2001 From: deuce <> Date: Wed, 16 Aug 2006 20:57:50 +0000 Subject: [PATCH] Fix bug in last commit. --- exec/fseditor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/fseditor.js b/exec/fseditor.js index db88e35ac6..8e10b65dc9 100644 --- a/exec/fseditor.js +++ b/exec/fseditor.js @@ -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); } -- GitLab