emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/kiwix 88d7b5b 08/10: Fix compilation error: functions a


From: Stefan Monnier
Subject: [elpa] externals/kiwix 88d7b5b 08/10: Fix compilation error: functions are not known to be defined
Date: Wed, 30 Dec 2020 16:32:23 -0500 (EST)

branch: externals/kiwix
commit 88d7b5b2c2553d1c76ee6180e08e158997ec34d8
Author: stardiviner <numbchild@gmail.com>
Commit: stardiviner <numbchild@gmail.com>

    Fix compilation error: functions are not known to be defined
    
    helm, helm-build-async-source, ivy-read
---
 kiwix.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/kiwix.el b/kiwix.el
index 4a9c2a3..f8e239a 100644
--- a/kiwix.el
+++ b/kiwix.el
@@ -290,6 +290,7 @@ list and return a list result."
         (let* ((library kiwix--selected-library)
                (query (pcase kiwix-default-completing-read
                         ('helm
+                         (require 'helm)
                          (helm :source (helm-build-async-source 
"kiwix-helm-search-hints"
                                          :candidates-process
                                          (lambda (input)
@@ -298,6 +299,7 @@ list and return a list result."
                                :input (kiwix--get-thing-at-point)
                                :buffer "*helm kiwix completion candidates*"))
                         ('ivy
+                         (require 'ivy)
                          (ivy-read "Kiwix related entries: "
                                    (lambda (input)
                                      (apply #'kiwix-ajax-search-hints



reply via email to

[Prev in Thread] Current Thread [Next in Thread]