From 89baff639394a218266dff3ba39471f28d03ed4d Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 18 May 2015 09:43:38 +0200 Subject: Emacs: Fix helm startup errors --- tag-emacs/emacs.d/init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tag-emacs') diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 5de9f29..d8c09c3 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -578,14 +578,14 @@ (req-package helm-config :demand t - :diminish helm-mode :ensure helm :bind (("C-x i" . helm-semantic-or-imenu)) :config (progn (setq helm-idle-delay .1 helm-input-idle-delay 0 ido-use-virtual-buffers t) - (helm-adaptive-mode 1))) + (when (fboundp #'helm-adaptive-mode) + (helm-adaptive-mode 1)))) (req-package helm-files :defer t -- cgit 1.4.1