From d6c83034e4d6f7bec6c35f9f056cf780e1a8c91b Mon Sep 17 00:00:00 2001
From: deuce <>
Date: Sat, 4 Mar 2006 03:34:02 +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 9c6b0f50a2..3afb54688a 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(word_wrap(f.read(),76),''));
+	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