From 341bf36319fcafc9146feedc5ed7fb960edbc78b Mon Sep 17 00:00:00 2001 From: mcmlxxix <> Date: Wed, 19 Oct 2011 19:34:03 +0000 Subject: [PATCH] convert parameter to string in putmsg (in the event of frame.putmsg(1), etc..) --- exec/load/frame.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/load/frame.js b/exec/load/frame.js index 574ed7a6d3..fe1f93d2ae 100644 --- a/exec/load/frame.js +++ b/exec/load/frame.js @@ -728,7 +728,7 @@ function Frame(x,y,width,height,attr,frame) { else {} } this.putmsg = function(str) { - str = str.split(''); + str = str.toString().split(''); var control_a = false; var curattr = this.attr; var pos = position.cursor; -- GitLab