branch: externals/auctex
commit ed54fb1b6f4c64765ba5be4c7c2d75fbea4ecbff
Author: Alex Branham <[email protected]>
Commit: Mosè Giordano <[email protected]>
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 <[email protected]>
---
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)