From f16b2cb543a228e93ed29cc05544ef92fac1cd23 Mon Sep 17 00:00:00 2001 From: zodiac Date: Thu, 15 Jan 2009 20:02:50 +0000 Subject: [PATCH] Fixed a typo that could occasionally corrupt the default font. git-svn-id: https://shellinabox.googlecode.com/svn/trunk@45 0da03de8-d603-11dd-86c2-0f8696b7b6f9 --- shellinabox/vt100.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shellinabox/vt100.js b/shellinabox/vt100.js index 7e82f79..cb5a64c 100644 --- a/shellinabox/vt100.js +++ b/shellinabox/vt100.js @@ -2518,7 +2518,7 @@ VT100.prototype.doControl = function(ch) { this.translate = this.GMap[1]; this.dispCtrl = true; break; case 0x0F: this.useGMap = 0; - this.translate = this.GMap[1]; + this.translate = this.GMap[0]; this.dispCtrl = false; break; case 0x18: case 0x1A: this.isEsc = ESnormal; break;