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
This commit is contained in:
zodiac 2009-01-15 20:02:50 +00:00
parent 1db2a6f7c6
commit f16b2cb543

View file

@ -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;