]> git.eshelyaron.com Git - emacs.git/commitdiff
Correctly filter Flymake diagnostic types shown in mode-line
authorJoão Távora <joaotavora@gmail.com>
Tue, 5 Jun 2018 13:31:38 +0000 (14:31 +0100)
committerJoão Távora <joaotavora@gmail.com>
Tue, 5 Jun 2018 14:18:04 +0000 (15:18 +0100)
Thus, if a package foo has its own types foo-error and
foo-warning, and if the buffer has no errors, the mode-line
will correctly show `[0 0]' (zero errors and warnings) instead
of `[0 0 0 0]' (zero errors, zero foo-errors, zero warnings,
zero  foo-warnings).

* lisp/progmodes/flymake.el
(flymake--mode-line-format): Coalesce diagnostic types based on
the severity, not the symbol.

lisp/progmodes/flymake.el

index 35d567254458aea7436c852d0e458f452308ba69..ec933ad16ba8b3c541b7923aba3831eb2ee56f8f 100644 (file)
@@ -1068,14 +1068,17 @@ applied."
       ,@(unless (or all-disabled
                     (null known))
           (cl-loop
+           with get-severity = (lambda (type)
+                                 (flymake--lookup-type-property
+                                  type
+                                  'severity
+                                  (warning-numeric-level :error)))
            for (type . severity)
            in (cl-sort (mapcar (lambda (type)
-                                 (cons type (flymake--lookup-type-property
-                                             type
-                                             'severity
-                                             (warning-numeric-level :error))))
+                                 (cons type (funcall get-severity type)))
                                (cl-union (hash-table-keys diags-by-type)
-                                         '(:error :warning)))
+                                         '(:error :warning)
+                                         :key get-severity))
                        #'>
                        :key #'cdr)
            for diags = (gethash type diags-by-type)