Better dependency handling in zeroein.el

This commit is contained in:
Takafumi Arakaki 2012-09-30 21:01:16 +02:00
parent 7f27bcb98a
commit c102a5a7a9

View file

@ -47,9 +47,13 @@
(concat zeroein:root-dir p))) (concat zeroein:root-dir p)))
(defvar zeroein:dependencies (defvar zeroein:dependencies
'("nxhtml" "markdown-mode" "websocket" "python" '("nxhtml" "markdown-mode" "websocket"
"auto-complete" "popup" "fuzzy" "pos-tip" "smartrep")) "auto-complete" "popup" "fuzzy" "pos-tip" "smartrep"))
;; Loading the new python.el fails in Emacs 23.
(when (>= emacs-major-version 24)
(add-to-list 'zeroein:dependencies "python"))
;;; Install dependencies ;;; Install dependencies