From bfd69d01782fd05481066f293560b1211e9f41c6 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Tue, 11 Feb 2020 23:50:20 +0000 Subject: Bump vte and urlocator Fixes #3247. --- alacritty_terminal/src/ansi.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'alacritty_terminal/src') 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 ); }}; } -- cgit