From 8afe7ba3b09b8412ea515a82d5631edc2b74b0b8 Mon Sep 17 00:00:00 2001 From: deuce <> Date: Sat, 4 Mar 2006 03:24:10 +0000 Subject: [PATCH] Use the super-wrapper. --- exec/fseditor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/fseditor.js b/exec/fseditor.js index 537cb30a33..9c6b0f50a2 100644 --- a/exec/fseditor.js +++ b/exec/fseditor.js @@ -1371,7 +1371,7 @@ console.ctrlkey_passthru="+ACGLOQRVWXYZ"; console.clear(); var f=new File(system.node_dir+"QUOTES.TXT"); if(f.open("r",false)) { - line=make_lines(quote_msg(f.read()),''); + line=make_lines(quote_msg(word_wrap(f.read(),76),'')); ypos=line.length; if(ypos>=topline+lines_on_screen) topline=ypos-lines_on_screen+1; -- GitLab