diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-02-11 23:50:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-11 23:50:20 +0000 |
commit | bfd69d01782fd05481066f293560b1211e9f41c6 (patch) | |
tree | d7bbed89c34fd853ba0aab2c7aa5b53feb623458 /alacritty_terminal/src | |
parent | 3b8ef3a0c4b35d70b58cbf3ea4782e38357c4bd3 (diff) | |
download | alacritty-bfd69d01782fd05481066f293560b1211e9f41c6.tar.gz alacritty-bfd69d01782fd05481066f293560b1211e9f41c6.zip |
Bump vte and urlocator
Fixes #3247.
Diffstat (limited to 'alacritty_terminal/src')
-rw-r--r-- | alacritty_terminal/src/ansi.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alacritty_terminal/src/ansi.rs b/alacritty_terminal/src/ansi.rs index c71d94f9..0877fbff 100644 --- a/alacritty_terminal/src/ansi.rs +++ b/alacritty_terminal/src/ansi.rs @@ -1097,12 +1097,12 @@ where } #[inline] - fn esc_dispatch(&mut self, params: &[i64], intermediates: &[u8], _ignore: bool, byte: u8) { + fn esc_dispatch(&mut self, intermediates: &[u8], _ignore: bool, byte: u8) { macro_rules! unhandled { () => {{ debug!( - "[unhandled] esc_dispatch params={:?}, ints={:?}, byte={:?} ({:02x})", - params, intermediates, byte as char, byte + "[unhandled] esc_dispatch ints={:?}, byte={:?} ({:02x})", + intermediates, byte as char, byte ); }}; } |