From e06e8ec912255f285de43b03641f24d603c73bb9 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Fri, 1 Jun 2018 14:46:33 +0300 Subject: [PATCH] Fix wrong printing of Emacs --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 1574db2f..4530c101 100644 --- a/src/main.rs +++ b/src/main.rs @@ -125,8 +125,8 @@ fn run() -> Result<()> { } if let Ok(emacs) = which("emacs") { - terminal.print_separator("Emacs"); if home_path(".emacs.d").exists() { + terminal.print_separator("Emacs"); Command::new(&emacs) .arg("--batch") .arg("-l")