branch: externals/auctex-cont-latexmk commit a3ba987e68803ce7c23a3d6b34da4a93153c0051 Author: Paul Nelson <ultr...@gmail.com> Commit: Paul Nelson <ultr...@gmail.com>
add tex-continuous--build-file back in, at least for now --- tex-continuous.el | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tex-continuous.el b/tex-continuous.el index a72e248541..9435a6b691 100644 --- a/tex-continuous.el +++ b/tex-continuous.el @@ -83,6 +83,16 @@ file." " " (shell-quote-argument (TeX-master-file "tex"))))) +(defun tex-continuous--build-file (ext) + "Return the build file with extension EXT. +Takes into account `TeX-output-dir'." + (if TeX-output-dir + (let ((master-dir (TeX-master-directory))) + (concat (or (TeX--master-output-dir master-dir t) + master-dir) + (file-name-nondirectory (TeX-master-file ext)))) + (TeX-master-file ext))) + (defun tex-continuous-process-item (type file line message offset _context search-string _line-end bad-box _error-point ignore)