emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] elpa eb2d64b 14/16: Fix to my previous commit


From: Tassilo Horn
Subject: [elpa] elpa eb2d64b 14/16: Fix to my previous commit
Date: Fri, 14 Oct 2016 16:03:33 +0000 (UTC)

branch: elpa
commit eb2d64bede8587c864c3031f233a0ae87c3f3a03
Author: Mosè Giordano <address@hidden>
Commit: Mosè Giordano <address@hidden>

    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."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]