2015-11-24 19:00:34 +08:00

11 lines
216 B
JavaScript

'use strict';
module.exports = function (Terminal){
Terminal.prototype.setgCharset = function (g, charset){
this.charsets[g] = charset;
if (this.glevel === g) {
this.charset = charset;
}
};
};