summaryrefslogtreecommitdiff
path: root/helm-config.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2015-05-20 09:57:43 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2015-05-20 09:57:43 +0200
commitd6626c2dfec4fc610de75112fd95789b6928cfc5 (patch)
tree2d4edf32c1139982ed59ccd9c0b472b079d06108 /helm-config.el
parente8c2b1b7425893fa15c6c9eee00cd0dd7f7c6c67 (diff)
* helm-config.el: Ensure we don't call async-bytecomp-package-mode
with old versions of async.
Diffstat (limited to 'helm-config.el')
-rw-r--r--helm-config.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/helm-config.el b/helm-config.el
index c9fcd864..736624b1 100644
--- a/helm-config.el
+++ b/helm-config.el
@@ -25,7 +25,8 @@
(require 'helm-aliases)
(declare-function async-bytecomp-package-mode "ext:async-bytecomp.el")
(when (require 'async-bytecomp nil t)
- (async-bytecomp-package-mode 1))
+ (and (fboundp 'async-bytecomp-package-mode)
+ (async-bytecomp-package-mode 1)))
(defgroup helm-config nil