From 9db2d7fe3ead083862c3ff8ef376e0f755529d4a Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Mon, 18 Nov 2019 22:25:29 +0200 Subject: [PATCH] Fix Emacs in Unix --- src/steps/emacs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/emacs.rs b/src/steps/emacs.rs index cabf55ca..65ae2cce 100644 --- a/src/steps/emacs.rs +++ b/src/steps/emacs.rs @@ -53,7 +53,7 @@ impl Emacs { EMACS_UPGRADE .chars() .map(|c| if c.is_whitespace() { '\u{00a0}' } else { c }) - .collect(), + .collect::(), ); #[cfg(not(unix))]