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

Use the super-wrapper.

parent 284346fa
No related branches found
No related tags found
No related merge requests found
...@@ -1371,7 +1371,7 @@ console.ctrlkey_passthru="+ACGLOQRVWXYZ"; ...@@ -1371,7 +1371,7 @@ console.ctrlkey_passthru="+ACGLOQRVWXYZ";
console.clear(); console.clear();
var f=new File(system.node_dir+"QUOTES.TXT"); var f=new File(system.node_dir+"QUOTES.TXT");
if(f.open("r",false)) { 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; ypos=line.length;
if(ypos>=topline+lines_on_screen) if(ypos>=topline+lines_on_screen)
topline=ypos-lines_on_screen+1; topline=ypos-lines_on_screen+1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment