Variable: flymake-error-bitmap
flymake-error-bitmap is a customizable variable defined in
flymake.el.gz.
Value
(flymake-double-exclamation-mark flymake-error-fringe)
Documentation
Bitmap (a symbol) used in the fringe for indicating errors.
The value may also be a list of two elements where the second
element specifies the face for the bitmap. For possible bitmap
symbols, see fringe-bitmaps. See also flymake-warning-bitmap.
The option flymake-fringe-indicator-position controls how and where
this is used.
This variable was added, or its default value changed, in Emacs 31.1.
Probably introduced at or before Emacs version 24.3.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/flymake.el.gz
(defcustom flymake-error-bitmap '(flymake-double-exclamation-mark
flymake-error-fringe)
"Bitmap (a symbol) used in the fringe for indicating errors.
The value may also be a list of two elements where the second
element specifies the face for the bitmap. For possible bitmap
symbols, see `fringe-bitmaps'. See also `flymake-warning-bitmap'.
The option `flymake-fringe-indicator-position' controls how and where
this is used."
:version "31.1"
:type '(choice (symbol :tag "Bitmap")
(list :tag "Bitmap and face"
(symbol :tag "Bitmap")
(face :tag "Face"))))