From d70cd4bc46aaa628433b4ad6c6feb48c67a23e6a Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 5 Mar 2021 22:28:58 -0500 Subject: clippy --- src/screen.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/screen.rs b/src/screen.rs index b908c45..1cde119 100644 --- a/src/screen.rs +++ b/src/screen.rs @@ -1135,7 +1135,7 @@ impl Screen { 23 => self.attrs.set_italic(false), 24 => self.attrs.set_underline(false), 27 => self.attrs.set_inverse(false), - n if n >= 30 && n <= 37 => { + n if (30..=37).contains(&n) => { self.attrs.fgcolor = crate::attrs::Color::Idx(n - 30); } 38 => match next_param!() { @@ -1158,7 +1158,7 @@ impl Screen { 39 => { self.attrs.fgcolor = crate::attrs::Color::Default; } - n if n >= 40 && n <= 47 => { + n if (40..=47).contains(&n) => { self.attrs.bgcolor = crate::attrs::Color::Idx(n - 40); } 48 => match next_param!() { @@ -1181,10 +1181,10 @@ impl Screen { 49 => { self.attrs.bgcolor = crate::attrs::Color::Default; } - n if n >= 90 && n <= 97 => { + n if (90..=97).contains(&n) => { self.attrs.fgcolor = crate::attrs::Color::Idx(n - 82); } - n if n >= 100 && n <= 107 => { + n if (100..=107).contains(&n) => { self.attrs.bgcolor = crate::attrs::Color::Idx(n - 92); } n => { -- cgit v1.2.3