From be09467d48a5b7644411c2a09d948ee89509894e Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Fri, 23 Sep 2016 10:12:11 -0700 Subject: Fix some compiler warnings Also enables debug symbols in release profile by default. Until Alacritty ships, there's going to be lots of perf analysis which needs debug symbols. The PriorityMutex low priority method was never used. Now it's just a fair mutex. --- src/term.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/term.rs') diff --git a/src/term.rs b/src/term.rs index 58f60b87..c209d4ad 100644 --- a/src/term.rs +++ b/src/term.rs @@ -456,7 +456,6 @@ impl ansi::Handler for Term { /// A character to be displayed #[inline] fn input(&mut self, c: char) { - debug_print!("{}; attrs = {:?}", c, self.attr); if self.cursor.col == self.grid.num_cols() { debug_println!("wrapping"); if (self.cursor.line + 1) >= self.scroll_region.end { -- cgit