branch: externals/kiwix commit 82140a5cf5e4807b20eec89fe38dab717c85f82f Author: stardiviner <numbch...@gmail.com> Commit: stardiviner <numbch...@gmail.com>
Make Ivy optional --- kiwix.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiwix.el b/kiwix.el index e3de033..2deeab8 100644 --- a/kiwix.el +++ b/kiwix.el @@ -7,7 +7,7 @@ ;; URL: https://github.com/stardiviner/kiwix.el ;; Created: 23th July 2016 ;; Version: 1.0.0 -;; Package-Requires: ((emacs "24.4") (cl-lib "0.5") (request "0.3.0") (ivy "0.12.0")) +;; Package-Requires: ((emacs "24.4") (cl-lib "0.5") (request "0.3.0")) ;;; Commentary: @@ -38,7 +38,7 @@ (require 'cl-lib) (require 'request) -(require 'ivy) +(if (featurep 'ivy) (require 'ivy)) (autoload 'org-link-set-parameters "org") (autoload 'org-store-link-props "org")