summaryrefslogtreecommitdiffstats
path: root/src/term
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2017-01-06 16:26:31 -0800
committerManish Goregaokar <manishsmail@gmail.com>2017-01-06 20:28:17 -0800
commitfbeded8ac543613b89af2ed7fd856e978493cde4 (patch)
tree64d761480a43f6935aad4e0d9171674cc9c0c868 /src/term
parentc579d079939b5d4ee3127579de732f037e612c28 (diff)
Remove need for inclusive ranges
Diffstat (limited to 'src/term')
-rw-r--r--src/term/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/term/mod.rs b/src/term/mod.rs
index 975ba376..09ed5d41 100644
--- a/src/term/mod.rs
+++ b/src/term/mod.rs
@@ -13,14 +13,14 @@
// limitations under the License.
//
//! Exports the `Term` type which is a high-level API for the Grid
-use std::ops::{Deref, Range, RangeInclusive};
+use std::ops::{Deref, Range};
use std::ptr;
use std::cmp;
use std::io;
use ansi::{self, Color, NamedColor, Attr, Handler};
use grid::{Grid, ClearRegion, ToRange};
-use index::{self, Point, Column, Line, Linear, IndexRange, Contains};
+use index::{self, Point, Column, Line, Linear, IndexRange, Contains, RangeInclusive};
use selection::{Span, Selection};
pub mod cell;