Use `autoload instead' of `declare-function'

This commit is contained in:
Daniel - 2020-06-27 10:10:59 +02:00
parent 6183e008d7
commit b5d7b57b27
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
2 changed files with 5 additions and 3 deletions

View File

@ -4,7 +4,7 @@
;;; Code:
(declare-function rectangle-exchange-point-and-mark "rect")
(autoload 'rectangle-exchange-point-and-mark "rect")
(require 'hydra)

View File

@ -14,8 +14,10 @@
(require 'hydra)
(require 'db-customize)
(declare-function counsel-org-goto-all "counsel")
(declare-function which-function "which-func")
(autoload 'counsel-org-goto-all "counsel")
(autoload 'which-function "which-func")
(autoload 'org-element-property "org-element")
(declare-function w32-shell-execute "w32fns.c")