From 9cac14f6f0a3fe4e04d7509cea97bab9e96f3db8 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sat, 18 Jun 2016 09:38:15 -0700 Subject: [PATCH] Ignore errors from time_emacs --- dotfiles/lib/shellenv/emacs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/lib/shellenv/emacs.sh b/dotfiles/lib/shellenv/emacs.sh index 7a16a829..09166998 100644 --- a/dotfiles/lib/shellenv/emacs.sh +++ b/dotfiles/lib/shellenv/emacs.sh @@ -108,7 +108,7 @@ function emacs_open { } function time_emacs { - time \emacs --daemon="timing" && emacsclient -e "(kill-emacs)" --server-file="timing" + time \emacs --daemon="timing" || echo ''; emacsclient -e "(kill-emacs)" --server-file="timing" } function emacs_editor {