Variable: whitespace-report-text

whitespace-report-text is a variable defined in whitespace.el.gz.

Value

(" Whitespace Report\n\n Current Setting                       Whitespace Problem\n\n empty                    []     []  empty lines at beginning of buffer\n empty                    []     []  empty lines at end of buffer\n trailing                 []     []  SPACEs or TABs at end of line\n indentation              []     []  >= `tab-width' SPACEs at beginning of line\n indentation::tab         []     []  >= `tab-width' SPACEs at beginning of line\n indentation::space       []     []  TABs at beginning of line\n space-before-tab         []     []  SPACEs before TAB\n space-before-tab::tab    []     []  SPACEs before TAB: SPACEs\n space-before-tab::space  []     []  SPACEs before TAB: TABs\n space-after-tab          []     []  >= `tab-width' SPACEs after TAB\n space-after-tab::tab     []     []  >= `tab-width' SPACEs after TAB: SPACEs\n space-after-tab::space   []     []  >= `tab-width' SPACEs after TAB: TABs\n\n indent-tabs-mode =\n tab-width        = \n\n" . " Whitespace Report\n\n Current Setting                       Whitespace Problem\n\n empty                    []     []  empty lines at beginning of buffer\n empty                    []     []  empty lines at end of buffer\n trailing                 []     []  SPACEs or TABs at end of line\n indentation              []     []  TABs at beginning of line\n indentation::tab         []     []  >= `tab-width' SPACEs at beginning of line\n indentation::space       []     []  TABs at beginning of line\n space-before-tab         []     []  SPACEs before TAB\n space-before-tab::tab    []     []  SPACEs before TAB: SPACEs\n space-before-tab::space  []     []  SPACEs before TAB: TABs\n space-after-tab          []     []  >= `tab-width' SPACEs after TAB\n space-after-tab::tab     []     []  >= `tab-width' SPACEs after TAB: SPACEs\n space-after-tab::space   []     []  >= `tab-width' SPACEs after TAB: TABs\n\n indent-tabs-mode =\n tab-width        = \n\n")

Documentation

Text for whitespace bogus report.

It is a cons of strings, where the car part is used when indent-tabs-mode(var)/indent-tabs-mode(fun) is non-nil, and the cdr part is used when indent-tabs-mode(var)/indent-tabs-mode(fun) is nil.

Source Code

;; Defined in /usr/src/emacs/lisp/whitespace.el.gz
(defconst whitespace-report-text
  '( ;; `indent-tabs-mode' has non-nil value
    "\
 Whitespace Report

 Current Setting                       Whitespace Problem

 empty                    []     []  empty lines at beginning of buffer
 empty                    []     []  empty lines at end of buffer
 trailing                 []     []  SPACEs or TABs at end of line
 indentation              []     []  >= `tab-width' SPACEs at beginning of line
 indentation::tab         []     []  >= `tab-width' SPACEs at beginning of line
 indentation::space       []     []  TABs at beginning of line
 space-before-tab         []     []  SPACEs before TAB
 space-before-tab::tab    []     []  SPACEs before TAB: SPACEs
 space-before-tab::space  []     []  SPACEs before TAB: TABs
 space-after-tab          []     []  >= `tab-width' SPACEs after TAB
 space-after-tab::tab     []     []  >= `tab-width' SPACEs after TAB: SPACEs
 space-after-tab::space   []     []  >= `tab-width' SPACEs after TAB: TABs

 indent-tabs-mode =
 tab-width        = \n\n"
    . ;; `indent-tabs-mode' has nil value
    "\
 Whitespace Report

 Current Setting                       Whitespace Problem

 empty                    []     []  empty lines at beginning of buffer
 empty                    []     []  empty lines at end of buffer
 trailing                 []     []  SPACEs or TABs at end of line
 indentation              []     []  TABs at beginning of line
 indentation::tab         []     []  >= `tab-width' SPACEs at beginning of line
 indentation::space       []     []  TABs at beginning of line
 space-before-tab         []     []  SPACEs before TAB
 space-before-tab::tab    []     []  SPACEs before TAB: SPACEs
 space-before-tab::space  []     []  SPACEs before TAB: TABs
 space-after-tab          []     []  >= `tab-width' SPACEs after TAB
 space-after-tab::tab     []     []  >= `tab-width' SPACEs after TAB: SPACEs
 space-after-tab::space   []     []  >= `tab-width' SPACEs after TAB: TABs

 indent-tabs-mode =
 tab-width        = \n\n")
  "Text for whitespace bogus report.

It is a cons of strings, where the car part is used when
`indent-tabs-mode' is non-nil, and the cdr part is used when
`indent-tabs-mode' is nil.")