From 1cdd2e00ab70180126dfa1c813c62bd0a895e047 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Mon, 16 Jan 2017 14:11:00 -0800 Subject: [PATCH] Remove parser states from xterm.js --- src/xterm.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/xterm.js b/src/xterm.js index 40de418a..24a840c0 100644 --- a/src/xterm.js +++ b/src/xterm.js @@ -37,11 +37,6 @@ import { CHARSETS } from './Charsets'; // Let it work inside Node.js for automated testing purposes. var document = (typeof window != 'undefined') ? window.document : null; -/** - * States - */ -var normal = 0, escaped = 1, csi = 2, osc = 3, charset = 4, dcs = 5, ignore = 6; - /** * The amount of write requests to queue before sending an XOFF signal to the * pty process. This number must be small in order for ^C and similar sequences