aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.rs2
-rw-r--r--src/run/mod.rs1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 33193f2..70e31bd 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -195,7 +195,7 @@ fn event_loop() {
fs::create_dir_all(basedir::config_dir()).unwrap();
fs::create_dir_all(basedir::data_dir()).unwrap();
- let mut se = Session {
+ let se = Session {
raw,
line: LineBuf::new(),
history: Vec::new(),
diff --git a/src/run/mod.rs b/src/run/mod.rs
index e230824..3803936 100644
--- a/src/run/mod.rs
+++ b/src/run/mod.rs
@@ -1,4 +1,3 @@
-use std::clone;
use std::collections::HashMap;
use std::path::PathBuf;
use std::sync::{Arc, Mutex};