aboutsummaryrefslogtreecommitdiff
path: root/alacritty_terminal/src/ansi.rs
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2020-02-11 23:50:20 +0000
committerGitHub <noreply@github.com>2020-02-11 23:50:20 +0000
commitbfd69d01782fd05481066f293560b1211e9f41c6 (patch)
treed7bbed89c34fd853ba0aab2c7aa5b53feb623458 /alacritty_terminal/src/ansi.rs
parent3b8ef3a0c4b35d70b58cbf3ea4782e38357c4bd3 (diff)
downloadalacritty-bfd69d01782fd05481066f293560b1211e9f41c6.tar.gz
alacritty-bfd69d01782fd05481066f293560b1211e9f41c6.zip
Bump vte and urlocator
Fixes #3247.
Diffstat (limited to 'alacritty_terminal/src/ansi.rs')
-rw-r--r--alacritty_terminal/src/ansi.rs6
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
);
}};
}