summaryrefslogtreecommitdiff
path: root/src/display_buffer.hh
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-05-08 12:34:57 +0100
committerMaxime Coste <mawww@kakoune.org>2017-05-08 12:34:57 +0100
commit12c498a0bd7fc03dcef88ef2d3564d0c1419eb8a (patch)
tree4867c9576801e8cbbc1fbb9cdd34b4f8200d3032 /src/display_buffer.hh
parentf9a609e479e86fe08b1e64ee5ca6ae0f5e19a6bc (diff)
Distinguish between BufferRanges and InclusiveBufferRanges
Fixes #1257
Diffstat (limited to 'src/display_buffer.hh')
-rw-r--r--src/display_buffer.hh3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/display_buffer.hh b/src/display_buffer.hh
index 17c2602f..18b238d8 100644
--- a/src/display_buffer.hh
+++ b/src/display_buffer.hh
@@ -14,9 +14,6 @@ namespace Kakoune
class Buffer;
struct BufferRange{ BufferCoord begin, end; };
-String option_to_string(BufferRange range);
-void option_from_string(StringView str, BufferRange& opt);
-
inline bool operator==(const BufferRange& lhs, const BufferRange& rhs)
{
return lhs.begin == rhs.begin and lhs.end == rhs.end;