diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-12-07 00:17:23 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-12-07 00:19:08 +0100 |
commit | 87b10f6e6efea9c1d1d84b4d1f1bd93fc453d652 (patch) | |
tree | 0f1269f000bfcb8bc8d85ccb34d7bbbfe292fa5e /Kernel/VirtualConsole.h | |
parent | f18c985546341f45276adf2e01dc9ab3765c26cf (diff) | |
download | serenity-87b10f6e6efea9c1d1d84b4d1f1bd93fc453d652.zip |
Add basic support for horizontal tabs in the VirtualConsole.
Diffstat (limited to 'Kernel/VirtualConsole.h')
-rw-r--r-- | Kernel/VirtualConsole.h | 1 |
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 }; }; |