Add "ext:" to declare-function invocations

This is technically required for Lisp files that are not part of core Emacs.
This commit is contained in:
Brian Leung 2022-12-18 05:10:51 -08:00 committed by Youmu
parent c8469f5c72
commit 52eb2dd754
1 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ newly defined motion."
(beginend-beginning-fn-name (intern (format "beginend-%s-goto-beginning" ec-mode-name)))
(beginend-map-name (intern (format "beginend-%s-map" ec-mode-name))))
`(progn
(declare-function ,beginend-beginning-fn-name "beginend")
(declare-function ,beginend-beginning-fn-name "ext:beginend")
(evil-define-motion ,motion-name (count)
:jump t
:type line
@ -92,7 +92,7 @@ newly defined motion."
(beginend-end-fn-name (intern (format "beginend-%s-goto-end" ec-mode-name)))
(beginend-map-name (intern (format "beginend-%s-map" ec-mode-name))))
`(progn
(declare-function ,beginend-end-fn-name "beginend")
(declare-function ,beginend-end-fn-name "ext:beginend")
(evil-define-motion ,motion-name (count)
:jump t
:type line