From 9ae4bc6a27291f7c9a8667878236c499d5eab28c Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Tue, 6 Aug 2013 13:12:24 +0200 Subject: Made custom-clone-git asynchronous --- init-functions.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'init-functions.el') diff --git a/init-functions.el b/init-functions.el index dfdfee08389a..1fdf64ed59a7 100644 --- a/init-functions.el +++ b/init-functions.el @@ -41,7 +41,7 @@ "Clones a git repository to .emacs.d/foldername" (let ((fullpath (concat "~/.emacs.d/" foldername))) (unless (file-exists-p fullpath) - (shell-command (concat "git clone " url " " fullpath)))) + (async-shell-command (concat "git clone " url " " fullpath)))) ) ;; These come from magnars, he's got some awesome things. -- cgit 1.4.1