]> git.eshelyaron.com Git - emacs.git/commitdiff
Cleanup stale diagnostics on Flymake restart
authorJoão Távora <joaotavora@gmail.com>
Sun, 10 Feb 2019 12:05:52 +0000 (12:05 +0000)
committerJoão Távora <joaotavora@gmail.com>
Sun, 10 Feb 2019 12:06:24 +0000 (12:06 +0000)
Not doing so would cause duplicate diagnostics.  See
https://github.com/joaotavora/eglot/issues/223 for an example.

* lisp/progmodes/flymake.el (Version): 1.0.4
(flymake-mode): Cleanup overlays before starting Flymake.

lisp/progmodes/flymake.el

index d7cb226773c0a5b3e3bfba731a097f647de07fdd..15a4d259859abf55c1cb1f22640e45434825e4fa 100644 (file)
@@ -4,7 +4,7 @@
 
 ;; Author:  Pavel Kobyakov <pk_at_work@yahoo.com>
 ;; Maintainer: João Távora <joaotavora@gmail.com>
-;; Version: 1.0.3
+;; Version: 1.0.4
 ;; Package-Requires: ((emacs "26.1"))
 ;; Keywords: c languages tools
 
@@ -974,6 +974,11 @@ special *Flymake log* buffer."  :group 'flymake :lighter
     (add-hook 'after-save-hook 'flymake-after-save-hook nil t)
     (add-hook 'kill-buffer-hook 'flymake-kill-buffer-hook nil t)
 
+    ;; If Flymake happened to be alrady already ON, we must cleanup
+    ;; existing diagnostic overlays, lest we forget them by blindly
+    ;; reinitializing `flymake--backend-state' in the next line.
+    ;; See https://github.com/joaotavora/eglot/issues/223.
+    (mapc #'delete-overlay (flymake--overlays))
     (setq flymake--backend-state (make-hash-table))
     (setq flymake--recent-changes nil)