summaryrefslogtreecommitdiff
path: root/Kernel/VirtualConsole.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-12-07 00:17:23 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-12-07 00:19:08 +0100
commit87b10f6e6efea9c1d1d84b4d1f1bd93fc453d652 (patch)
tree0f1269f000bfcb8bc8d85ccb34d7bbbfe292fa5e /Kernel/VirtualConsole.h
parentf18c985546341f45276adf2e01dc9ab3765c26cf (diff)
downloadserenity-87b10f6e6efea9c1d1d84b4d1f1bd93fc453d652.zip
Add basic support for horizontal tabs in the VirtualConsole.
Diffstat (limited to 'Kernel/VirtualConsole.h')
-rw-r--r--Kernel/VirtualConsole.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/VirtualConsole.h b/Kernel/VirtualConsole.h
index 75b54e82f2..76be9b45bf 100644
--- a/Kernel/VirtualConsole.h
+++ b/Kernel/VirtualConsole.h
@@ -73,4 +73,5 @@ private:
EscapeState m_escape_state { Normal };
Vector<byte> m_parameters;
Vector<byte> m_intermediates;
+ byte* m_horizontal_tabs { nullptr };
};