aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-06-02 01:32:21 +0000
committerBlaž Hrastnik2020-06-02 01:34:55 +0000
commitd232000c54696887b12bae18533a39ec32bb59fb (patch)
treee3d9fef8199d4d17dd20b50aa5ed3582b918b091 /helix-core/src
parent3e078f8c7e441582089f5ef3e9631543ea00de2a (diff)
Fix compilation.
Diffstat (limited to 'helix-core/src')
-rw-r--r--helix-core/src/state.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/state.rs b/helix-core/src/state.rs
index 682d298a..1ffd708e 100644
--- a/helix-core/src/state.rs
+++ b/helix-core/src/state.rs
@@ -92,7 +92,7 @@ impl State {
// range.to()
// }
// } else {
- let pos = self.move_pos(range.head, dir, granularity, 1)
+ let pos = self.move_pos(range.head, dir, granularity, 1);
// };
SelectionRange::new(pos, pos)
});