0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-20 09:56:29 +00:00

lisp/ox-texinfo.el (org-element-ast): Fix checkdoc warnings

Require org-element-ast explicitly to avoid checkdoc warnings for its
functions.  org-element-ast is indirectly loaded by ox->org-element,
but requiring it directly is indeed more clear.
This commit is contained in:
Ihor Radchenko 2023-11-14 20:07:47 +02:00
parent 5bbd58d34f
commit 4758255035
No known key found for this signature in database
GPG key ID: 6470762A7DA11D8B

View file

@ -31,6 +31,7 @@
(require 'cl-lib)
(require 'ox)
(require 'org-element-ast)
(eval-when-compile (require 'subr-x))