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

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

[elpa] externals/auctex ed54fb1 36/43: Refine how we setup flymake backe


From: Tassilo Horn
Subject: [elpa] externals/auctex ed54fb1 36/43: Refine how we setup flymake backend function
Date: Tue, 20 Mar 2018 11:34:15 -0400 (EDT)

branch: externals/auctex
commit ed54fb1b6f4c64765ba5be4c7c2d75fbea4ecbff
Author: Alex Branham <address@hidden>
Commit: Mosè Giordano <address@hidden>

    Refine how we setup flymake backend function
    
    * latex.el: Add LaTeX-flymake to TeX-latex-mode
    * latex-flymake.el: Don't add to LaTeX-mode-hook
    
    Signed-off-by: Mosè Giordano <address@hidden>
---
 latex-flymake.el | 7 -------
 latex.el         | 5 ++++-
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/latex-flymake.el b/latex-flymake.el
index b06149c..2a86ebe 100644
--- a/latex-flymake.el
+++ b/latex-flymake.el
@@ -100,12 +100,5 @@ REPORT-FN is flymake's callback function."
       (process-send-region LaTeX--flymake-proc (point-min) (point-max))
       (process-send-eof LaTeX--flymake-proc))))
 
-(defun LaTeX-setup-flymake-backend ()
-  "Setup flymake backend for LaTeX."
-  (add-hook 'flymake-diagnostic-functions 'LaTeX-flymake nil t))
-
-(when (< 25 emacs-major-version)
-  (add-hook 'LaTeX-mode-hook #'LaTeX-setup-flymake-backend))
-
 (provide 'latex-flymake)
 ;;; latex-flymake.el ends here
diff --git a/latex.el b/latex.el
index 7354c23..d3c2e65 100644
--- a/latex.el
+++ b/latex.el
@@ -5901,7 +5901,10 @@ of `LaTeX-mode-hook'."
   ;; Defeat filladapt
   (if (and (boundp 'filladapt-mode)
           filladapt-mode)
-      (turn-off-filladapt-mode)))
+      (turn-off-filladapt-mode))
+  (when (< 25 emacs-major-version)
+    ;; Set up flymake backend, see latex-flymake.el
+    (add-hook 'flymake-diagnostic-functions 'LaTeX-flymake nil t)))
 
 (TeX-abbrev-mode-setup doctex-mode)
 



reply via email to

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