From 4758255035a18ad8fd66fd2c0a9063c376fabb0c Mon Sep 17 00:00:00 2001 From: Ihor Radchenko Date: Tue, 14 Nov 2023 20:07:47 +0200 Subject: [PATCH] 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. --- lisp/ox-texinfo.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/ox-texinfo.el b/lisp/ox-texinfo.el index a83fe2647..b8d95c934 100644 --- a/lisp/ox-texinfo.el +++ b/lisp/ox-texinfo.el @@ -31,6 +31,7 @@ (require 'cl-lib) (require 'ox) +(require 'org-element-ast) (eval-when-compile (require 'subr-x))