branch: elpa commit eb2d64bede8587c864c3031f233a0ae87c3f3a03 Author: Mosè Giordano <m...@gnu.org> Commit: Mosè Giordano <m...@gnu.org>
Fix to my previous commit * tex-buf.el (TeX-BibTeX-sentinel): Fix misplaced `setq', it was inside the `cond' form while it should have been outside. --- tex-buf.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tex-buf.el b/tex-buf.el index 94e3ece..d9648f8 100644 --- a/tex-buf.el +++ b/tex-buf.el @@ -1649,9 +1649,9 @@ Rerun to get mark in right position\\." nil t) "\\<TeX-mode-map>\\[TeX-recenter-output-buffer]"))) (t (message (concat "BibTeX finished successfully. " - "Run LaTeX again to get citations right."))) - ;; In any case, run the default next command. - (setq TeX-command-next TeX-command-default))) + "Run LaTeX again to get citations right.")))) + ;; In any case, run the default next command. + (setq TeX-command-next TeX-command-default)) (defun TeX-Biber-sentinel (_process _name) "Cleanup TeX output buffer after running Biber."