branch: externals/ellama commit ea435a17d1fb73ab2e11dfe608f024db1d0d6ac0 Author: Sergey Kostyaev <sskosty...@gmail.com> Commit: Sergey Kostyaev <sskosty...@gmail.com>
Add variable declaration and provide statement Added the declaration for `org-export-with-broken-links` and a `provide` statement to ensure the file is loaded correctly. --- ellama-manual.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ellama-manual.el b/ellama-manual.el index 95704ea309..d8e79b25f6 100644 --- a/ellama-manual.el +++ b/ellama-manual.el @@ -30,6 +30,8 @@ ;;; Code: +(defvar org-export-with-broken-links) + ;;;###autoload (defun ellama-manual-export () "Create info manual from readme." @@ -48,4 +50,6 @@ 'texinfo "ellama.texi" nil nil nil nil nil #'org-texinfo-compile)))) + +(provide 'ellama-manual) ;;; ellama-manual.el ends here.