summaryrefslogtreecommitdiffstats
path: root/alacritty_terminal
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
parent3b8ef3a0c4b35d70b58cbf3ea4782e38357c4bd3 (diff)
Bump vte and urlocator
Fixes #3247.
Diffstat (limited to 'alacritty_terminal')
-rw-r--r--alacritty_terminal/Cargo.toml2
-rw-r--r--alacritty_terminal/src/ansi.rs6
2 files changed, 4 insertions, 4 deletions
diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml
index a4d0b044..d935470d 100644
--- a/alacritty_terminal/Cargo.toml
+++ b/alacritty_terminal/Cargo.toml
@@ -16,7 +16,7 @@ font = { path = "../font" }
parking_lot = "0.9"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.8"
-vte = { version = "0.6.0", default-features = false }
+vte = { version = "0.7.0", default-features = false }
mio = "0.6.20"
mio-extras = "2"
log = "0.4"
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
);
}};
}