diff options
author | Koichi Murase <myoga.murase@gmail.com> | 2019-08-07 07:59:16 +0900 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2019-08-06 22:59:16 +0000 |
commit | 33cfc52909bda1e2d5ceeae5397f254509d00539 (patch) | |
tree | 5c216e26de4c095058844cfab1ad18e7140157bd /alacritty_terminal/tests/ref.rs | |
parent | b20d28578229a570b72f420fa50a64040bd2105b (diff) | |
download | alacritty-33cfc52909bda1e2d5ceeae5397f254509d00539.tar.gz alacritty-33cfc52909bda1e2d5ceeae5397f254509d00539.zip |
Ignore unsupported CSI sequences
Instead of ignoring unexpected intermediates in CSI escape sequences,
the intermediates are now explicitly checked and the escape sequence is
rejected when an unexpected intermediate is found.
Fixes #2171.
Diffstat (limited to 'alacritty_terminal/tests/ref.rs')
-rw-r--r-- | alacritty_terminal/tests/ref.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/alacritty_terminal/tests/ref.rs b/alacritty_terminal/tests/ref.rs index fb87adb1..b6efb6a8 100644 --- a/alacritty_terminal/tests/ref.rs +++ b/alacritty_terminal/tests/ref.rs @@ -53,6 +53,7 @@ ref_tests! { grid_reset row_reset zerowidth + selective_erasure } fn read_u8<P>(path: P) -> Vec<u8> |