Variable: flymake-warning-bitmap

flymake-warning-bitmap is a customizable variable defined in flymake.el.gz.

Value

(exclamation-mark compilation-warning)

Documentation

Bitmap (a symbol) used in the fringe for indicating warnings.

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-error-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 24.3.

Probably introduced at or before Emacs version 24.3.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/flymake.el.gz
(defcustom flymake-warning-bitmap '(exclamation-mark compilation-warning)
  "Bitmap (a symbol) used in the fringe for indicating warnings.
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-error-bitmap'.

The option `flymake-fringe-indicator-position' controls how and where
this is used."
  :version "24.3"
  :type '(choice (symbol :tag "Bitmap")
                 (list :tag "Bitmap and face"
                       (symbol :tag "Bitmap")
                       (face :tag "Face"))))