Add missing semi-colons

This commit is contained in:
Daniel Imms
2017-05-21 13:51:02 -07:00
parent 13088f55a0
commit d2b0d514f8
+2 -2
View File
@@ -482,7 +482,7 @@ export class Parser {
// Request Status String (DECRQSS).
// test: echo -e '\eP$q"p\e\\'
case '$q':
pt = this._terminal.currentParam
pt = this._terminal.currentParam;
valid = false;
switch (pt) {
@@ -528,7 +528,7 @@ export class Parser {
// This can cause a small glitch in vim.
// test: echo -ne '\eP+q6b64\e\\'
case '+q':
pt = this._terminal.currentParam
pt = this._terminal.currentParam;
valid = false;
this._terminal.send(C0.ESC + 'P' + +valid + '+r' + pt + C0.ESC + '\\');