]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix building of VC package manuals with relative org links/includes
authorJoseph Turner <joseph@breatheoutbreathe.in>
Sat, 12 Aug 2023 08:40:07 +0000 (01:40 -0700)
committerPhilip Kaludercic <philipk@posteo.net>
Sat, 19 Aug 2023 09:39:50 +0000 (11:39 +0200)
* lisp/emacs-lisp/package-vc.el (package-vc--build-documentation):
Ensure that default-default is the docs-directory around
org-export-to-file to ensure that links to relative files work
correctly.  (Bug#65243)

lisp/emacs-lisp/package-vc.el

index b4c911015b595ba5d88765644f695189f113eb34..ffc7afeb2eeada335e263f41edf08320c4c4d846 100644 (file)
@@ -356,7 +356,8 @@ otherwise it's assumed to be an Info file."
       (with-temp-buffer
         (insert-file-contents file)
         (setq file (make-temp-file "ox-texinfo-"))
-        (org-export-to-file 'texinfo file)
+        (let ((default-directory docs-directory))
+          (org-export-to-file 'texinfo file))
         (setq clean-up t)))
     (with-current-buffer (get-buffer-create " *package-vc doc*")
       (erase-buffer)