Ignore company-quickhelp for emacs version < 24.4

Fix #922
This commit is contained in:
syl20bnr 2015-03-23 23:28:32 -04:00
parent 3e14243a5f
commit 0f4cae5773

View file

@ -1,6 +1,8 @@
(defvar company-mode-packages
'(company
company-quickhelp))
(defvar company-mode-packages '(company))
;; company-quickhelp from MELPA is not compatible with 24.3 anymore
(unless (version< emacs-version "24.4")
(push 'company-quickhelp company-mode-packages))
(defvar company-mode-excluded-packages
'(auto-complete ac-ispell tern-auto-complete auto-complete-clang edts)