aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucius Hu <lebensterben@users.noreply.github.com>2023-04-17 20:06:18 -0400
committerWilfred Hughes <me@wilfred.me.uk>2023-04-18 21:06:06 -0700
commit8893e4ba49e4447b41ee08d93e58c23e07bc7514 (patch)
treec50b5eb450980f3f25485b890895f36937dac569
parente9ec6fc2ae10db2b9b59ed656021845d11881a0a (diff)
suppress some compiler warnings
-rw-r--r--helpful.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/helpful.el b/helpful.el
index 8a386fe..3c229b1 100644
--- a/helpful.el
+++ b/helpful.el
@@ -56,6 +56,10 @@
(require 'imenu)
(require 'cc-langs)
+(declare-function org-link-types "ol" ())
+(declare-function org-link-store-props "ol" (&rest plist))
+(declare-function org-link-get-parameter "ol" (type key))
+
(defvar-local helpful--sym nil)
(defvar-local helpful--callable-p nil)
(defvar-local helpful--associated-buffer nil
@@ -1580,7 +1584,7 @@ same bindings as `global-map'."
(when (and key-sequences (not (eq keymap-sym 'widget-global-map)))
(push (cons (symbol-name keymap-sym) key-sequences)
matching-keymaps))))
- (-zip keymap-syms keymap-sym-vals))
+ (-zip-pair keymap-syms keymap-sym-vals))
;; Look for this command in keymaps used by minor modes that
;; aren't bound to variables.