diff options
| author | Paul Nelson <ultrono@gmail.com> | 2024-04-24 22:07:58 +0200 |
|---|---|---|
| committer | Paul Nelson <ultrono@gmail.com> | 2024-04-24 22:07:58 +0200 |
| commit | a3ba987e68803ce7c23a3d6b34da4a93153c0051 (patch) | |
| tree | 0ea7a568a40a48d9d73d316d28756ce1738c45df | |
| parent | d2f6dbaae49c4ed2ddc93fcefca527046ce86d9e (diff) | |
add tex-continuous--build-file back in, at least for now
| -rw-r--r-- | tex-continuous.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tex-continuous.el b/tex-continuous.el index a72e248..9435a6b 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) |
