diff options
Diffstat (limited to 'src/util.rs')
-rw-r--r-- | src/util.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.rs b/src/util.rs index 7227f1a0..f51a41f8 100644 --- a/src/util.rs +++ b/src/util.rs @@ -57,13 +57,13 @@ pub mod fmt { impl<T: fmt::Display> fmt::Display for $s<T> { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - write!(f, "\x1b[{}m{}\x1b[0m", $color, self.0) + write!(f, concat!("\x1b[", $color, "m{}\x1b[0m"), self.0) } } impl<T: fmt::Debug> fmt::Debug for $s<T> { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - write!(f, "\x1b[{}m{:?}\x1b[0m", $color, self.0) + write!(f, concat!("\x1b[", $color, "m{:?}\x1b[0m"), self.0) } } )* |