From 07b25731a6832c67ac506137061a8348e0179857 Mon Sep 17 00:00:00 2001 From: Ticki Date: Tue, 8 Mar 2016 09:09:52 +0100 Subject: [PATCH] Minor cosmetic changes --- src/control.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/control.rs b/src/control.rs index 5d757da..8e48ecd 100644 --- a/src/control.rs +++ b/src/control.rs @@ -92,17 +92,17 @@ pub trait TermControl { impl TermControl for W { fn csi(&mut self, b: &[u8]) -> IoResult { - self.write(b"\x1b[").and_then(|x| { + self.write(b"\x1B[").and_then(|x| { self.write(b).map(|y| x + y) }) } fn osc(&mut self, b: &[u8]) -> IoResult { - self.write(b"\x1b]").and_then(|x| { + self.write(b"\x1B]").and_then(|x| { self.write(b).map(|y| x + y) }) } fn dsc(&mut self, b: &[u8]) -> IoResult { - self.write(b"\x1bP").and_then(|x| { + self.write(b"\x1BP").and_then(|x| { self.write(b).map(|y| x + y) }) }