Resolves clippy errors, please review!!! (#60)

This commit is contained in:
Thomas Schönauer
2022-10-23 11:34:30 +00:00
committed by GitHub
parent 6000124062
commit 347372ca71
19 changed files with 147 additions and 140 deletions

View File

@@ -71,7 +71,7 @@ impl Emacs {
command.arg("--force");
}
command.args(&["upgrade"]);
command.args(["upgrade"]);
command.check_run()
}
@@ -90,7 +90,7 @@ impl Emacs {
let mut command = ctx.run_type().execute(&emacs);
command
.args(&["--batch", "--debug-init", "-l"])
.args(["--batch", "--debug-init", "-l"])
.arg(init_file)
.arg("--eval");