Change unicode character for flycheck mode-line feedback

Now it is •
This commit is contained in:
syl20bnr 2014-10-17 15:41:26 -04:00
parent 79952de4af
commit 1705e64674

View file

@ -803,7 +803,7 @@ inserted in the buffer (if it is not read-only)."
(errorp (flycheck-has-current-errors-p ',error))
(err (or (cdr (assq ',error error-counts)) "?"))
(running (eq 'running flycheck-last-status-change)))
(if (or errorp running) (format "⦿%s " err))))
(if (or errorp running) (format "%s " err))))
;; Custom fringe indicator
(when (fboundp 'define-fringe-bitmap)