branch: externals/auctex-cont-latexmk
commit d0fe19c0dee67291e44d8fa37082ceff89264b60
Author: Paul Nelson <[email protected]>
Commit: Paul Nelson <[email protected]>
Make tex-continuous-mode independent of flymake
* tex-continuous.el (tex-continuous-mode): Remove flymake hook
adjustments. These are now taken care of either by the user, or by
tex-continuous-toggle.
---
tex-continuous.el | 2 --
1 file changed, 2 deletions(-)
diff --git a/tex-continuous.el b/tex-continuous.el
index 20d0e52629..16cc1f332a 100644
--- a/tex-continuous.el
+++ b/tex-continuous.el
@@ -294,7 +294,6 @@ report diagnostics."
(add-hook 'after-change-functions #'tex-continuous--update-time nil
t)
(push buf tex-continuous--subscribed-buffers))))
(add-hook 'kill-buffer-hook 'tex-continuous--unsubscribe nil t)
- (add-hook 'flymake-diagnostic-functions #'tex-continuous-flymake nil t)
(when tex-continuous--timer
(cancel-timer tex-continuous--timer)
(setq tex-continuous--timer nil))
@@ -303,7 +302,6 @@ report diagnostics."
(t
(tex-continuous--unsubscribe)
(remove-hook 'kill-buffer-hook 'tex-continuous--unsubscribe t)
- (remove-hook 'flymake-diagnostic-functions #'tex-continuous-flymake t)
(when tex-continuous--report-fn
(setq tex-continuous--report-fn nil)))))