;ELC   
;;; Compiled by buildd@akateko.buildd on Fri Oct 25 13:53:10 2013
;;; from file /build/buildd/emacs23-23.4+1/debian/build-x/lisp/whitespace.el
;;; in Emacs version 23.4.1
;;; with all optimizations.

;;; This file contains utf-8 non-ASCII characters,
;;; and so cannot be loaded into Emacs 22 or earlier.
(and (boundp 'emacs-version)
     (< (aref emacs-version (1- (length emacs-version))) ?A)
     (string-lessp emacs-version "23")
     (error "`whitespace.el' was compiled for Emacs 23 or later"))

;;;;;;;;;;;;;;;;;;;;;


(custom-declare-group 'whitespace nil "Visualize blanks (TAB, (HARD) SPACE and NEWLINE)." :link '(emacs-library-link :tag "Source Lisp File" "whitespace.el") :version "23.1" :group 'convenience)
#@4568 Specify which kind of blank is visualized.

It's a list containing some or all of the following values:

   face			enable all visualization via faces (see below).

   trailing		trailing blanks are visualized via faces.
			It has effect only if `face' (see above)
			is present in `whitespace-style'.

   tabs			TABs are visualized via faces.
			It has effect only if `face' (see above)
			is present in `whitespace-style'.

   spaces		SPACEs and HARD SPACEs are visualized via
			faces.
			It has effect only if `face' (see above)
			is present in `whitespace-style'.

   lines		lines which have columns beyond
			`whitespace-line-column' are highlighted via
			faces.
			Whole line is highlighted.
			It has precedence over `lines-tail' (see
			below).
			It has effect only if `face' (see above)
			is present in `whitespace-style'.

   lines-tail		lines which have columns beyond
			`whitespace-line-column' are highlighted via
			faces.
			But only the part of line which goes
			beyond `whitespace-line-column' column.
			It has effect only if `lines' (see above)
			is not present in `whitespace-style'
			and if `face' (see above) is present in
			`whitespace-style'.

   newline		NEWLINEs are visualized via faces.
			It has effect only if `face' (see above)
			is present in `whitespace-style'.

   empty		empty lines at beginning and/or end of buffer
			are visualized via faces.
			It has effect only if `face' (see above)
			is present in `whitespace-style'.

   indentation::tab	8 or more SPACEs at beginning of line are
			visualized via faces.
			It has effect only if `face' (see above)
			is present in `whitespace-style'.

   indentation::space	TABs at beginning of line are visualized via
			faces.
			It has effect only if `face' (see above)
			is present in `whitespace-style'.

   indentation		8 or more SPACEs at beginning of line are
			visualized, if `indent-tabs-mode' (which see)
			is non-nil; otherwise, TABs at beginning of
			line are visualized via faces.
			It has effect only if `face' (see above)
			is present in `whitespace-style'.

   space-after-tab::tab		8 or more SPACEs after a TAB are
				visualized via faces.
				It has effect only if `face' (see above)
				is present in `whitespace-style'.

   space-after-tab::space	TABs are visualized when 8 or more
				SPACEs occur after a TAB, via faces.
				It has effect only if `face' (see above)
				is present in `whitespace-style'.

   space-after-tab		8 or more SPACEs after a TAB are
				visualized, if `indent-tabs-mode'
				(which see) is non-nil; otherwise,
				the TABs are visualized via faces.
				It has effect only if `face' (see above)
				is present in `whitespace-style'.

   space-before-tab::tab	SPACEs before TAB are visualized via
				faces.
				It has effect only if `face' (see above)
				is present in `whitespace-style'.

   space-before-tab::space	TABs are visualized when SPACEs occur
				before TAB, via faces.
				It has effect only if `face' (see above)
				is present in `whitespace-style'.

   space-before-tab		SPACEs before TAB are visualized, if
				`indent-tabs-mode' (which see) is
				non-nil; otherwise, the TABs are
				visualized via faces.
				It has effect only if `face' (see above)
				is present in `whitespace-style'.

   space-mark		SPACEs and HARD SPACEs are visualized via
			display table.

   tab-mark		TABs are visualized via display table.

   newline-mark		NEWLINEs are visualized via display table.

Any other value is ignored.

If nil, don't visualize TABs, (HARD) SPACEs and NEWLINEs via faces and
via display table.

There is an evaluation order for some values, if they are
included in `whitespace-style' list.  For example, if
indentation, indentation::tab and/or indentation::space are
included in `whitespace-style' list.  The evaluation order for
these values is:

 * For indentation:
   1. indentation
   2. indentation::tab
   3. indentation::space

 * For SPACEs after TABs:
   1. space-after-tab
   2. space-after-tab::tab
   3. space-after-tab::space

 * For SPACEs before TABs:
   1. space-before-tab
   2. space-before-tab::tab
   3. space-before-tab::space

So, for example, if indentation and indentation::space are
included in `whitespace-style' list, the indentation value is
evaluated instead of indentation::space value.

One reason for not visualize spaces via faces (if `face' is not
included in `whitespace-style') is to use exclusively for
cleanning up a buffer.  See `whitespace-cleanup' and
`whitespace-cleanup-region' for documentation.

See also `whitespace-display-mappings' for documentation.
(custom-declare-variable 'whitespace-style ''(face tabs spaces trailing lines space-before-tab newline indentation empty space-after-tab space-mark tab-mark newline-mark) '(#$ . 737) :type '(repeat :tag "Kind of Blank" (choice :tag "Kind of Blank Face" (const :tag "(Face) Face visualization" face) (const :tag "(Face) Trailing TABs, SPACEs and HARD SPACEs" trailing) (const :tag "(Face) SPACEs and HARD SPACEs" spaces) (const :tag "(Face) TABs" tabs) (const :tag "(Face) Lines" lines) (const :tag "(Face) SPACEs before TAB" space-before-tab) (const :tag "(Face) NEWLINEs" newline) (const :tag "(Face) Indentation SPACEs" indentation) (const :tag "(Face) Empty Lines At BOB And/Or EOB" empty) (const :tag "(Face) SPACEs after TAB" space-after-tab) (const :tag "(Mark) SPACEs and HARD SPACEs" space-mark) (const :tag "(Mark) TABs" tab-mark) (const :tag "(Mark) NEWLINEs" newline-mark))) :group 'whitespace)
#@97 Symbol face used to visualize SPACE.

Used when `whitespace-style' includes the value `spaces'.
(custom-declare-variable 'whitespace-space ''whitespace-space '(#$ . 6216) :type 'face :group 'whitespace)
(custom-declare-face 'whitespace-space '((((class color) (background dark)) (:background "grey20" :foreground "darkgray")) (((class color) (background light)) (:background "LightYellow" :foreground "lightgray")) (t (:inverse-video t))) "Face used to visualize SPACE." :group 'whitespace)
#@102 Symbol face used to visualize HARD SPACE.

Used when `whitespace-style' includes the value `spaces'.
(custom-declare-variable 'whitespace-hspace ''whitespace-hspace '(#$ . 6714) :type 'face :group 'whitespace)
(custom-declare-face 'whitespace-hspace '((((class color) (background dark)) (:background "grey24" :foreground "darkgray")) (((class color) (background light)) (:background "LemonChiffon3" :foreground "lightgray")) (t (:inverse-video t))) "Face used to visualize HARD SPACE." :group 'whitespace)
#@93 Symbol face used to visualize TAB.

Used when `whitespace-style' includes the value `tabs'.
(custom-declare-variable 'whitespace-tab ''whitespace-tab '(#$ . 7226) :type 'face :group 'whitespace)
(custom-declare-face 'whitespace-tab '((((class color) (background dark)) (:background "grey22" :foreground "darkgray")) (((class color) (background light)) (:background "beige" :foreground "lightgray")) (t (:inverse-video t))) "Face used to visualize TAB." :group 'whitespace)
#@169 Symbol face used to visualize NEWLINE char mapping.

See `whitespace-display-mappings'.

Used when `whitespace-style' includes the values `newline-mark'
and `newline'.
(custom-declare-variable 'whitespace-newline ''whitespace-newline '(#$ . 7706) :type 'face :group 'whitespace)
(custom-declare-face 'whitespace-newline '((((class color) (background dark)) (:foreground "darkgray" :bold nil)) (((class color) (background light)) (:foreground "lightgray" :bold nil)) (t (:underline t :bold nil))) "Face used to visualize NEWLINE char mapping.\n\nSee `whitespace-display-mappings'." :group 'whitespace)
#@109 Symbol face used to visualize trailing blanks.

Used when `whitespace-style' includes the value `trailing'.
(custom-declare-variable 'whitespace-trailing ''whitespace-trailing '(#$ . 8314) :type 'face :group 'whitespace)
(custom-declare-face 'whitespace-trailing '((((class mono)) (:inverse-video t :bold t :underline t)) (t (:background "red1" :foreground "yellow" :bold t))) "Face used to visualize trailing blanks." :group 'whitespace)
#@133 Symbol face used to visualize "long" lines.

See `whitespace-line-column'.

Used when `whitespace-style' includes the value `line'.
(custom-declare-variable 'whitespace-line ''whitespace-line '(#$ . 8760) :type 'face :group 'whitespace)
(custom-declare-face 'whitespace-line '((((class mono)) (:inverse-video t :bold t :underline t)) (t (:background "gray20" :foreground "violet"))) "Face used to visualize \"long\" lines.\n\nSee `whitespace-line-column'." :group 'whitespace)
#@119 Symbol face used to visualize SPACEs before TAB.

Used when `whitespace-style' includes the value `space-before-tab'.
(custom-declare-variable 'whitespace-space-before-tab ''whitespace-space-before-tab '(#$ . 9244) :type 'face :group 'whitespace)
(custom-declare-face 'whitespace-space-before-tab '((((class mono)) (:inverse-video t :bold t :underline t)) (t (:background "DarkOrange" :foreground "firebrick"))) "Face used to visualize SPACEs before TAB." :group 'whitespace)
#@134 Symbol face used to visualize 8 or more SPACEs at beginning of line.

Used when `whitespace-style' includes the value `indentation'.
(custom-declare-variable 'whitespace-indentation ''whitespace-indentation '(#$ . 9727) :type 'face :group 'whitespace)
(custom-declare-face 'whitespace-indentation '((((class mono)) (:inverse-video t :bold t :underline t)) (t (:background "yellow" :foreground "firebrick"))) "Face used to visualize 8 or more SPACEs at beginning of line." :group 'whitespace)
#@136 Symbol face used to visualize empty lines at beginning and/or end of buffer.

Used when `whitespace-style' includes the value `empty'.
(custom-declare-variable 'whitespace-empty ''whitespace-empty '(#$ . 10226) :type 'face :group 'whitespace)
(custom-declare-face 'whitespace-empty '((((class mono)) (:inverse-video t :bold t :underline t)) (t (:background "yellow" :foreground "firebrick"))) "Face used to visualize empty lines at beginning and/or end of buffer." :group 'whitespace)
#@127 Symbol face used to visualize 8 or more SPACEs after TAB.

Used when `whitespace-style' includes the value `space-after-tab'.
(custom-declare-variable 'whitespace-space-after-tab ''whitespace-space-after-tab '(#$ . 10718) :type 'face :group 'whitespace)
(custom-declare-face 'whitespace-space-after-tab '((((class mono)) (:inverse-video t :bold t :underline t)) (t (:background "yellow" :foreground "firebrick"))) "Face used to visualize 8 or more SPACEs after TAB." :group 'whitespace)
#@641 Specify HARD SPACE characters regexp.

If you're using `mule' package, there may be other characters besides:

   "\xA0"   "\x8A0"   "\x920"   "\xE20"   "\xF20"

that should be considered HARD SPACE.

Here are some examples:

   "\\(^\xA0+\\)"		visualize only leading HARD SPACEs.
   "\\(\xA0+$\\)"		visualize only trailing HARD SPACEs.
   "\\(^\xA0+\\|\xA0+$\\)"	visualize leading and/or trailing HARD SPACEs.
   "\t\\(\xA0+\\)\t"		visualize only HARD SPACEs between TABs.

NOTE: Enclose always by \\( and \\) the elements to highlight.
      Use exactly one pair of enclosing \\( and \\).

Used when `whitespace-style' includes `spaces'.
(custom-declare-variable 'whitespace-hspace-regexp '"\\(\\(\240\\|ࢠ\\|ठ\\|ภ\\|༠\\)+\\)" '(#$ . 11212) :type '(regexp :tag "HARD SPACE Chars") :group 'whitespace)
#@546 Specify SPACE characters regexp.

If you're using `mule' package, there may be other characters
besides " " that should be considered SPACE.

Here are some examples:

   "\\(^ +\\)"		visualize only leading SPACEs.
   "\\( +$\\)"		visualize only trailing SPACEs.
   "\\(^ +\\| +$\\)"	visualize leading and/or trailing SPACEs.
   "\t\\( +\\)\t"	visualize only SPACEs between TABs.

NOTE: Enclose always by \\( and \\) the elements to highlight.
      Use exactly one pair of enclosing \\( and \\).

Used when `whitespace-style' includes `spaces'.
(custom-declare-variable 'whitespace-space-regexp '"\\( +\\)" '(#$ . 12029) :type '(regexp :tag "SPACE Chars") :group 'whitespace)
#@538 Specify TAB characters regexp.

If you're using `mule' package, there may be other characters
besides "\t" that should be considered TAB.

Here are some examples:

   "\\(^\t+\\)"		visualize only leading TABs.
   "\\(\t+$\\)"		visualize only trailing TABs.
   "\\(^\t+\\|\t+$\\)"	visualize leading and/or trailing TABs.
   " \\(\t+\\) "	visualize only TABs between SPACEs.

NOTE: Enclose always by \\( and \\) the elements to highlight.
      Use exactly one pair of enclosing \\( and \\).

Used when `whitespace-style' includes `tabs'.
(custom-declare-variable 'whitespace-tab-regexp '"\\(	+\\)" '(#$ . 12712) :type '(regexp :tag "TAB Chars") :group 'whitespace)
#@377 Specify trailing characters regexp.

If you're using `mule' package, there may be other characters besides:

   " "  "\t"  "\xA0"  "\x8A0"  "\x920"  "\xE20"  "\xF20"

that should be considered blank.

NOTE: Enclose always by "\\(" and "\\)$" the elements to highlight.
      Use exactly one pair of enclosing elements above.

Used when `whitespace-style' includes `trailing'.
(custom-declare-variable 'whitespace-trailing-regexp '"\\(\\(	\\| \\|\240\\|ࢠ\\|ठ\\|ภ\\|༠\\)+\\)$" '(#$ . 13383) :type '(regexp :tag "Trailing Chars") :group 'whitespace)
#@313 Specify SPACEs before TAB regexp.

If you're using `mule' package, there may be other characters besides:

   " "  "\t"  "\xA0"  "\x8A0"  "\x920"  "\xE20"  "\xF20"

that should be considered blank.

Used when `whitespace-style' includes `space-before-tab',
`space-before-tab::tab' or  `space-before-tab::space'.
(custom-declare-variable 'whitespace-space-before-tab-regexp '"\\( +\\)\\(	+\\)" '(#$ . 13945) :type '(regexp :tag "SPACEs Before TAB") :group 'whitespace)
#@437 Specify regexp for 8 or more SPACEs at beginning of line.

It is a cons where the cons car is used for SPACEs visualization
and the cons cdr is used for TABs visualization.

If you're using `mule' package, there may be other characters besides:

   " "  "\t"  "\xA0"  "\x8A0"  "\x920"  "\xE20"  "\xF20"

that should be considered blank.

Used when `whitespace-style' includes `indentation',
`indentation::tab' or  `indentation::space'.
(custom-declare-variable 'whitespace-indentation-regexp ''("^	*\\(\\( \\{%d\\}\\)+\\)[^\n	]" . "^ *\\(	+\\)[^\n]") '(#$ . 14420) :type '(cons (regexp :tag "Indentation SPACEs") (regexp :tag "Indentation TABs")) :group 'whitespace)
#@268 Specify regexp for empty lines at beginning of buffer.

If you're using `mule' package, there may be other characters besides:

   " "  "\t"  "\xA0"  "\x8A0"  "\x920"  "\xE20"  "\xF20"

that should be considered blank.

Used when `whitespace-style' includes `empty'.
(custom-declare-variable 'whitespace-empty-at-bob-regexp '"^\\(\\([ 	]*\n\\)+\\)" '(#$ . 15094) :type '(regexp :tag "Empty Lines At Beginning Of Buffer") :group 'whitespace)
#@262 Specify regexp for empty lines at end of buffer.

If you're using `mule' package, there may be other characters besides:

   " "  "\t"  "\xA0"  "\x8A0"  "\x920"  "\xE20"  "\xF20"

that should be considered blank.

Used when `whitespace-style' includes `empty'.
(custom-declare-variable 'whitespace-empty-at-eob-regexp '"^\\([ 	\n]+\\)" '(#$ . 15542) :type '(regexp :tag "Empty Lines At End Of Buffer") :group 'whitespace)
#@437 Specify regexp for 8 or more SPACEs after TAB.

It is a cons where the cons car is used for SPACEs visualization
and the cons cdr is used for TABs visualization.

If you're using `mule' package, there may be other characters besides:

   " "  "\t"  "\xA0"  "\x8A0"  "\x920"  "\xE20"  "\xF20"

that should be considered blank.

Used when `whitespace-style' includes `space-after-tab',
`space-after-tab::tab' or `space-after-tab::space'.
(custom-declare-variable 'whitespace-space-after-tab-regexp ''("	+\\(\\( \\{%d\\}\\)+\\)" . "\\(	+\\) +") '(#$ . 15971) :type '(regexp :tag "SPACEs After TAB") :group 'whitespace)
#@200 Specify column beyond which the line is highlighted.

It must be an integer or nil.  If nil, the `fill-column' variable value is
used.

Used when `whitespace-style' includes `lines' or `lines-tail'.
(custom-declare-variable 'whitespace-line-column '80 '(#$ . 16594) :type '(choice :tag "Line Length Limit" (integer :tag "Line Length") (const :tag "Use fill-column" nil)) :group 'whitespace)
#@751 Specify an alist of mappings for displaying characters.

Each element has the following form:

   (KIND CHAR VECTOR...)

Where:

KIND	is the kind of character.
	It can be one of the following symbols:

	tab-mark	for TAB character

	space-mark	for SPACE or HARD SPACE character

	newline-mark	for NEWLINE character

CHAR	is the character to be mapped.

VECTOR	is a vector of characters to be displayed in place of CHAR.
	The first display vector that can be displayed is used;
	if no display vector for a mapping can be displayed, then
	that character is displayed unmodified.

The NEWLINE character is displayed using the face given by
`whitespace-newline' variable.

Used when `whitespace-style' includes `tab-mark', `space-mark' or
`newline-mark'.
(custom-declare-variable 'whitespace-display-mappings ''((space-mark 32 [183] [46]) (space-mark 160 [164] [95]) (space-mark 2208 [2212] [95]) (space-mark 2336 [2340] [95]) (space-mark 3616 [3620] [95]) (space-mark 3872 [3876] [95]) (newline-mark 10 [36 10]) (tab-mark 9 [187 9] [92 9])) '(#$ . 16992) :type '(repeat (list :tag "Character Mapping" (choice :tag "Char Kind" (const :tag "Tab" tab-mark) (const :tag "Space" space-mark) (const :tag "Newline" newline-mark)) (character :tag "Char") (repeat :inline t :tag "Vector List" (vector :tag "" (repeat :inline t :tag "Vector Characters" (character :tag "Char")))))) :group 'whitespace)
#@597 Modes for which global `whitespace-mode' is automagically turned on.

Global `whitespace-mode' is controlled by the command
`global-whitespace-mode'.

If nil, means no modes have `whitespace-mode' automatically
turned on.

If t, all modes that support `whitespace-mode' have it
automatically turned on.

Else it should be a list of `major-mode' symbol names for which
`whitespace-mode' should be automatically turned on.  The sense
of the list is negated if it begins with `not'.  For example:

   (c-mode c++-mode)

means that `whitespace-mode' is turned on for buffers in C and
C++ modes only.
(custom-declare-variable 'whitespace-global-modes 't '(#$ . 18387) :type '(choice :tag "Global Modes" (const :tag "None" nil) (const :tag "All" t) (set :menu-tag "Mode Specific" :tag "Modes" :value (not) (const :tag "Except" not) (repeat :inline t (symbol :tag "Mode")))) :group 'whitespace)
#@817 Specify which action is taken when a buffer is visited or written.

It's a list containing some or all of the following values:

   nil			no action is taken.

   cleanup		cleanup any bogus whitespace always when local
			whitespace is turned on.
			See `whitespace-cleanup' and
			`whitespace-cleanup-region'.

   report-on-bogus	report if there is any bogus whitespace always
			when local whitespace is turned on.

   auto-cleanup		cleanup any bogus whitespace when buffer is
			written.
			See `whitespace-cleanup' and
			`whitespace-cleanup-region'.

   abort-on-bogus	abort if there is any bogus whitespace and the
			buffer is written.

   warn-if-read-only	give a warning if `cleanup' or `auto-cleanup'
			is included in `whitespace-action' and the
			buffer is read-only.

Any other value is treated as nil.
(custom-declare-variable 'whitespace-action 'nil '(#$ . 19282) :type '(choice :tag "Actions" (const :tag "None" nil) (repeat :tag "Action List" (choice :tag "Action" (const :tag "Cleanup When On" cleanup) (const :tag "Report On Bogus" report-on-bogus) (const :tag "Auto Cleanup" auto-cleanup) (const :tag "Abort On Bogus" abort-on-bogus) (const :tag "Warn If Read-Only" warn-if-read-only)))) :group 'whitespace)
#@99 Non-nil if Whitespace mode is enabled.
Use the command `whitespace-mode' to change this variable.
(defvar whitespace-mode nil (#$ . 20516))
(make-variable-buffer-local 'whitespace-mode)
#@296 Toggle whitespace minor mode visualization ("ws" on modeline).

If ARG is null, toggle whitespace visualization.
If ARG is a number greater than zero, turn on visualization;
otherwise, turn off visualization.

See also `whitespace-style', `whitespace-newline' and
`whitespace-display-mappings'.
(defalias 'whitespace-mode #[(&optional arg) "\304 	\305=\203 \n?\202( 	\203 \306	!\307V\202( \n\204\" \310\202( \311\312\302\"\210\313\2032 \313\202B \n\203? \314 \210\315 \210\202B \316 \210\317\320\n\203L \321\202M \322\"\210\323\324!\203n \304 \203a \304 \232\203n \311\325\n\203k \326\202l \327\"\210)\330 \210\n\207" [#1=#:last-message arg whitespace-mode noninteractive current-message toggle prefix-numeric-value 0 t message "Toggling %s off; better pass an explicit argument." nil whitespace-turn-on whitespace-action-when-on whitespace-turn-off run-hooks whitespace-mode-hook whitespace-mode-on-hook whitespace-mode-off-hook called-interactively-p any "Whitespace mode %sabled" "en" "dis" force-mode-line-update] 3 (#$ . 20709) (list (or current-prefix-arg 'toggle))])
(byte-code "\301\302\303\304\300!\205\n #\207" [whitespace-mode-map add-minor-mode whitespace-mode " ws" boundp] 5)
#@115 Non-nil if Whitespace-Newline mode is enabled.
Use the command `whitespace-newline-mode' to change this variable.
(defvar whitespace-newline-mode nil (#$ . 21914))
(make-variable-buffer-local 'whitespace-newline-mode)
#@476 Toggle NEWLINE minor mode visualization ("nl" on modeline).

If ARG is null, toggle NEWLINE visualization.
If ARG is a number greater than zero, turn on visualization;
otherwise, turn off visualization.

Use `whitespace-newline-mode' only for NEWLINE visualization
exclusively.  For other visualizations, including NEWLINE
visualization together with (HARD) SPACEs and/or TABs, please,
use `whitespace-mode'.

See also `whitespace-newline' and `whitespace-display-mappings'.
(defalias 'whitespace-newline-mode #[(&optional arg) "\305 	\306=\203 \n?\202( 	\203 \307	!\310V\202( \n\204\" \311\202( \312\313\302\"\210\314\315\304\n!\210\f)\316\317\n\203< \320\202= \321\"\210\322\323!\203^ \305 \203Q \305 \232\203^ \312\324\n\203[ \325\202\\ \326\"\210)\327 \210\n\207" [#1=#:last-message arg whitespace-newline-mode whitespace-style whitespace-mode current-message toggle prefix-numeric-value 0 t message "Toggling %s off; better pass an explicit argument." nil (newline-mark newline) run-hooks whitespace-newline-mode-hook whitespace-newline-mode-on-hook whitespace-newline-mode-off-hook called-interactively-p any "Whitespace-Newline mode %sabled" "en" "dis" force-mode-line-update] 3 (#$ . 22139) (list (or current-prefix-arg 'toggle))])
(byte-code "\301\302\303\304\300!\205\n #\207" [whitespace-newline-mode-map add-minor-mode whitespace-newline-mode " nl" boundp] 5)
#@287 Non-nil if Global-Whitespace mode is enabled.
See the command `global-whitespace-mode' for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node `Easy Customization')
or call the function `global-whitespace-mode'.
(custom-declare-variable 'global-whitespace-mode 'nil '(#$ . 23526) :set 'custom-set-minor-mode :initialize 'custom-initialize-default :group 'whitespace :type 'boolean)
#@303 Toggle whitespace global minor mode visualization ("WS" on modeline).

If ARG is null, toggle whitespace visualization.
If ARG is a number greater than zero, turn on visualization;
otherwise, turn off visualization.

See also `whitespace-style', `whitespace-newline' and
`whitespace-display-mappings'.
(defalias 'global-whitespace-mode #[(&optional arg) "\306 	\307=\203 \n?\202( 	\203 \310	!\311V\202( \n\204\" \312\202( \313\314\302\"\210\315\2032 \315\202\203 \n\203^ \212\316\317\320\"\210\321 \315\211\203Z @\211q\210\204S \320 \210A\211\204E +\202\203 \212\322\317\320\"\210\321 \315\211\203\202 @\211q\210\204{ \323 \210A\211\204m +\324\325\n\203\215 \326\202\216 \327\"\210\330\331!\203\263 \332\302!\210\306 \203\246 \306 \232\203\263 \313\333\n\203\260 \334\202\261 \335\"\210)\336 \210\n\207" [#1=#:last-message arg global-whitespace-mode noninteractive buffer --dolist-tail-- current-message toggle prefix-numeric-value 0 t message "Toggling %s off; better pass an explicit argument." nil add-hook find-file-hook whitespace-turn-on-if-enabled buffer-list remove-hook whitespace-turn-off run-hooks global-whitespace-mode-hook global-whitespace-mode-on-hook global-whitespace-mode-off-hook called-interactively-p any customize-mark-as-set "Global-Whitespace mode %sabled" "en" "dis" force-mode-line-update whitespace-mode] 4 (#$ . 23989) (list (or current-prefix-arg 'toggle))])
(byte-code "\301\302\303\304\300!\205\n #\207" [global-whitespace-mode-map add-minor-mode global-whitespace-mode " WS" boundp] 5)
(defalias 'whitespace-turn-on-if-enabled #[nil "\304=\204$ <\203  \242\305=\203 	A>?\202! 	>\202! \306\205G \306\206F \307 \310H\311=\206F \307 \310H\312=\203D \307 \313\230?\206F \314 )\207" [whitespace-global-modes major-mode inhibit-quit noninteractive t not nil buffer-name 0 32 42 "*scratch*" whitespace-turn-on] 2])
#@311 Non-nil if Global-Whitespace-Newline mode is enabled.
See the command `global-whitespace-newline-mode' for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node `Easy Customization')
or call the function `global-whitespace-newline-mode'.
(custom-declare-variable 'global-whitespace-newline-mode 'nil '(#$ . 25869) :set 'custom-set-minor-mode :initialize 'custom-initialize-default :group 'whitespace :type 'boolean)
#@496 Toggle NEWLINE global minor mode visualization ("NL" on modeline).

If ARG is null, toggle NEWLINE visualization.
If ARG is a number greater than zero, turn on visualization;
otherwise, turn off visualization.

Use `global-whitespace-newline-mode' only for NEWLINE
visualization exclusively.  For other visualizations, including
NEWLINE visualization together with (HARD) SPACEs and/or TABs,
please use `global-whitespace-mode'.

See also `whitespace-newline' and `whitespace-display-mappings'.
(defalias 'global-whitespace-newline-mode #[(&optional arg) "\305 	\306=\203 \n?\202( 	\203 \307	!\310V\202( \n\204\" \311\202( \312\313\302\"\210\314\315\304\n\2034 \316\2025 \317!\210\f)\320\321\n\203D \322\202E \323\"\210\324\325!\203j \326\302!\210\305 \203] \305 \232\203j \312\327\n\203g \330\202h \331\"\210)\332 \210\n\207" [#1=#:last-message arg global-whitespace-newline-mode whitespace-style global-whitespace-mode current-message toggle prefix-numeric-value 0 t message "Toggling %s off; better pass an explicit argument." nil (newline-mark newline) 1 -1 run-hooks global-whitespace-newline-mode-hook global-whitespace-newline-mode-on-hook global-whitespace-newline-mode-off-hook called-interactively-p any customize-mark-as-set "Global-Whitespace-Newline mode %sabled" "en" "dis" force-mode-line-update] 3 (#$ . 26364) (list (or current-prefix-arg 'toggle))])
(byte-code "\301\302\303\304\300!\205\n #\207" [global-whitespace-newline-mode-map add-minor-mode global-whitespace-newline-mode " NL" boundp] 5)
#@42 List of valid `whitespace-style' values.
(defconst whitespace-style-value-list '(face tabs spaces trailing lines lines-tail newline empty indentation indentation::tab indentation::space space-after-tab space-after-tab::tab space-after-tab::space space-before-tab space-before-tab::tab space-before-tab::space help-newline tab-mark space-mark newline-mark) (#$ . 27892))
#@216 Alist of toggle options.

Each element has the form:

   (CHAR . SYMBOL)

Where:

CHAR	is a char which the user will have to type.

SYMBOL	is a valid symbol associated with CHAR.
	See `whitespace-style-value-list'.
(defconst whitespace-toggle-option-alist '((102 . face) (116 . tabs) (115 . spaces) (114 . trailing) (108 . lines) (76 . lines-tail) (110 . newline) (101 . empty) (9 . indentation) (73 . indentation::tab) (105 . indentation::space) (1 . space-after-tab) (65 . space-after-tab::tab) (97 . space-after-tab::space) (2 . space-before-tab) (66 . space-before-tab::tab) (98 . space-before-tab::space) (84 . tab-mark) (83 . space-mark) (78 . newline-mark) (120 . whitespace-style)) (#$ . 28269))
#@48 Used to save locally `whitespace-style' value.
(defvar whitespace-active-style nil (#$ . 28979))
#@48 Used to save locally `indent-tabs-mode' value.
(defvar whitespace-indent-tabs-mode indent-tabs-mode (#$ . 29082))
#@41 Used to save locally `tab-width' value.
(defvar whitespace-tab-width tab-width (#$ . 29202))
#@102 Used to save locally current point value.
Used by `whitespace-trailing-regexp' function (which see).
(defvar whitespace-point (point) (#$ . 29302))
#@114 Used to save locally the font-lock refontify state.
Used by `whitespace-post-command-hook' function (which see).
(defvar whitespace-font-lock-refontify nil (#$ . 29457))
#@105 Used to save locally the bob marker value.
Used by `whitespace-post-command-hook' function (which see).
(defvar whitespace-bob-marker nil (#$ . 29634))
#@105 Used to save locally the eob marker value.
Used by `whitespace-post-command-hook' function (which see).
(defvar whitespace-eob-marker nil (#$ . 29793))
#@139 Used to indicate locally if buffer changed.
Used by `whitespace-post-command-hook' and `whitespace-buffer-changed'
functions (which see).
(defvar whitespace-buffer-changed nil (#$ . 29952))
#@2642 Toggle local `whitespace-mode' options.

If local whitespace-mode is off, toggle the option given by ARG
and turn on local whitespace-mode.

If local whitespace-mode is on, toggle the option given by ARG
and restart local whitespace-mode.

Interactively, it reads one of the following chars:

  CHAR	MEANING
  (VIA FACES)
   f	toggle face visualization
   t	toggle TAB visualization
   s	toggle SPACE and HARD SPACE visualization
   r	toggle trailing blanks visualization
   l	toggle "long lines" visualization
   L	toggle "long lines" tail visualization
   n	toggle NEWLINE visualization
   e	toggle empty line at bob and/or eob visualization
   C-i	toggle indentation SPACEs visualization (via `indent-tabs-mode')
   I	toggle indentation SPACEs visualization
   i	toggle indentation TABs visualization
   C-a	toggle SPACEs after TAB visualization (via `indent-tabs-mode')
   A	toggle SPACEs after TAB: SPACEs visualization
   a	toggle SPACEs after TAB: TABs visualization
   C-b	toggle SPACEs before TAB visualization (via `indent-tabs-mode')
   B	toggle SPACEs before TAB: SPACEs visualization
   b	toggle SPACEs before TAB: TABs visualization

  (VIA DISPLAY TABLE)
   T	toggle TAB visualization
   S	toggle SPACEs before TAB visualization
   N	toggle NEWLINE visualization

   x	restore `whitespace-style' value
   ?	display brief help

Non-interactively, ARG should be a symbol or a list of symbols.
The valid symbols are:

   face			toggle face visualization
   tabs			toggle TAB visualization
   spaces		toggle SPACE and HARD SPACE visualization
   trailing		toggle trailing blanks visualization
   lines		toggle "long lines" visualization
   lines-tail		toggle "long lines" tail visualization
   newline		toggle NEWLINE visualization
   empty		toggle empty line at bob and/or eob visualization
   indentation		toggle indentation SPACEs visualization
   indentation::tab	toggle indentation SPACEs visualization
   indentation::space	toggle indentation TABs visualization
   space-after-tab		toggle SPACEs after TAB visualization
   space-after-tab::tab		toggle SPACEs after TAB: SPACEs visualization
   space-after-tab::space	toggle SPACEs after TAB: TABs visualization
   space-before-tab		toggle SPACEs before TAB visualization
   space-before-tab::tab	toggle SPACEs before TAB: SPACEs visualization
   space-before-tab::space	toggle SPACEs before TAB: TABs visualization

   tab-mark		toggle TAB visualization
   space-mark		toggle SPACEs before TAB visualization
   newline-mark		toggle NEWLINE visualization

   whitespace-style	restore `whitespace-style' value

See `whitespace-style' and `indent-tabs-mode' for documentation.
(defalias 'whitespace-toggle-options #[(arg) "\303\304	#\305\306!\210\305\307!)\207" [arg whitespace-active-style whitespace-style whitespace-toggle-list t whitespace-mode 0 1] 4 (#$ . 30150) (whitespace-interactive-char t)])
#@53 Used to toggle the global `whitespace-style' value.
(defvar whitespace-toggle-style nil (#$ . 33025))
#@2649 Toggle global `whitespace-mode' options.

If global whitespace-mode is off, toggle the option given by ARG
and turn on global whitespace-mode.

If global whitespace-mode is on, toggle the option given by ARG
and restart global whitespace-mode.

Interactively, it accepts one of the following chars:

  CHAR	MEANING
  (VIA FACES)
   f	toggle face visualization
   t	toggle TAB visualization
   s	toggle SPACE and HARD SPACE visualization
   r	toggle trailing blanks visualization
   l	toggle "long lines" visualization
   L	toggle "long lines" tail visualization
   n	toggle NEWLINE visualization
   e	toggle empty line at bob and/or eob visualization
   C-i	toggle indentation SPACEs visualization (via `indent-tabs-mode')
   I	toggle indentation SPACEs visualization
   i	toggle indentation TABs visualization
   C-a	toggle SPACEs after TAB visualization (via `indent-tabs-mode')
   A	toggle SPACEs after TAB: SPACEs visualization
   a	toggle SPACEs after TAB: TABs visualization
   C-b	toggle SPACEs before TAB visualization (via `indent-tabs-mode')
   B	toggle SPACEs before TAB: SPACEs visualization
   b	toggle SPACEs before TAB: TABs visualization

  (VIA DISPLAY TABLE)
   T	toggle TAB visualization
   S	toggle SPACEs before TAB visualization
   N	toggle NEWLINE visualization

   x	restore `whitespace-style' value
   ?	display brief help

Non-interactively, ARG should be a symbol or a list of symbols.
The valid symbols are:

   face			toggle face visualization
   tabs			toggle TAB visualization
   spaces		toggle SPACE and HARD SPACE visualization
   trailing		toggle trailing blanks visualization
   lines		toggle "long lines" visualization
   lines-tail		toggle "long lines" tail visualization
   newline		toggle NEWLINE visualization
   empty		toggle empty line at bob and/or eob visualization
   indentation		toggle indentation SPACEs visualization
   indentation::tab	toggle indentation SPACEs visualization
   indentation::space	toggle indentation TABs visualization
   space-after-tab		toggle SPACEs after TAB visualization
   space-after-tab::tab		toggle SPACEs after TAB: SPACEs visualization
   space-after-tab::space	toggle SPACEs after TAB: TABs visualization
   space-before-tab		toggle SPACEs before TAB visualization
   space-before-tab::tab	toggle SPACEs before TAB: SPACEs visualization
   space-before-tab::space	toggle SPACEs before TAB: TABs visualization

   tab-mark		toggle TAB visualization
   space-mark		toggle SPACEs before TAB visualization
   newline-mark		toggle NEWLINE visualization

   whitespace-style	restore `whitespace-style' value

See `whitespace-style' and `indent-tabs-mode' for documentation.
(defalias 'global-whitespace-toggle-options #[(arg) "\303\304	#\211\305\306!\210\305\307!)\207" [arg whitespace-toggle-style whitespace-style whitespace-toggle-list nil global-whitespace-mode 0 1] 5 (#$ . 33135) (whitespace-interactive-char nil)])
#@2046 Cleanup some blank problems in all buffer or at region.

It usually applies to the whole buffer, but in transient mark
mode when the mark is active, it applies to the region.  It also
applies to the region when it is not in transient mark mode, the
mark is active and \[universal-argument] was pressed just before
calling `whitespace-cleanup' interactively.

See also `whitespace-cleanup-region'.

The problems cleaned up are:

1. empty lines at beginning of buffer.
2. empty lines at end of buffer.
   If `whitespace-style' includes the value `empty', remove all
   empty lines at beginning and/or end of buffer.

3. 8 or more SPACEs at beginning of line.
   If `whitespace-style' includes the value `indentation':
   replace 8 or more SPACEs at beginning of line by TABs, if
   `indent-tabs-mode' is non-nil; otherwise, replace TABs by
   SPACEs.
   If `whitespace-style' includes the value `indentation::tab',
   replace 8 or more SPACEs at beginning of line by TABs.
   If `whitespace-style' includes the value `indentation::space',
   replace TABs by SPACEs.

4. SPACEs before TAB.
   If `whitespace-style' includes the value `space-before-tab':
   replace SPACEs by TABs, if `indent-tabs-mode' is non-nil;
   otherwise, replace TABs by SPACEs.
   If `whitespace-style' includes the value
   `space-before-tab::tab', replace SPACEs by TABs.
   If `whitespace-style' includes the value
   `space-before-tab::space', replace TABs by SPACEs.

5. SPACEs or TABs at end of line.
   If `whitespace-style' includes the value `trailing', remove
   all SPACEs or TABs at end of line.

6. 8 or more SPACEs after TAB.
   If `whitespace-style' includes the value `space-after-tab':
   replace SPACEs by TABs, if `indent-tabs-mode' is non-nil;
   otherwise, replace TABs by SPACEs.
   If `whitespace-style' includes the value
   `space-after-tab::tab', replace SPACEs by TABs.
   If `whitespace-style' includes the value
   `space-after-tab::space', replace TABs by SPACEs.

See `whitespace-style', `indent-tabs-mode' and `tab-width' for
documentation.
(defalias 'whitespace-cleanup #[nil "\203 \306\307!\207	\204 \n\203 \203 \310\311 \312 \"\207\212\313 \314\216\315>\203P \316eb\210\317\320P\316\321#\203> \322\224\322\225|\210\317\323P\316\321#\203O \322\224\322\225|\210)+\310ed\"\207" [buffer-read-only transient-mark-mode current-prefix-arg mark-active save-match-data-internal whitespace-style whitespace-warn-read-only "cleanup" whitespace-cleanup-region region-beginning region-end match-data ((byte-code "\301\302\"\207" [save-match-data-internal set-match-data evaporate] 3)) empty nil re-search-forward "\\`" t 1 "\\'" overwrite-mode whitespace-empty-at-bob-regexp whitespace-empty-at-eob-regexp] 4 (#$ . 36042) "@"])
#@1501 Cleanup some blank problems at region.

The problems cleaned up are:

1. 8 or more SPACEs at beginning of line.
   If `whitespace-style' includes the value `indentation':
   replace 8 or more SPACEs at beginning of line by TABs, if
   `indent-tabs-mode' is non-nil; otherwise, replace TABs by
   SPACEs.
   If `whitespace-style' includes the value `indentation::tab',
   replace 8 or more SPACEs at beginning of line by TABs.
   If `whitespace-style' includes the value `indentation::space',
   replace TABs by SPACEs.

2. SPACEs before TAB.
   If `whitespace-style' includes the value `space-before-tab':
   replace SPACEs by TABs, if `indent-tabs-mode' is non-nil;
   otherwise, replace TABs by SPACEs.
   If `whitespace-style' includes the value
   `space-before-tab::tab', replace SPACEs by TABs.
   If `whitespace-style' includes the value
   `space-before-tab::space', replace TABs by SPACEs.

3. SPACEs or TABs at end of line.
   If `whitespace-style' includes the value `trailing', remove
   all SPACEs or TABs at end of line.

4. 8 or more SPACEs after TAB.
   If `whitespace-style' includes the value `space-after-tab':
   replace SPACEs by TABs, if `indent-tabs-mode' is non-nil;
   otherwise, replace TABs by SPACEs.
   If `whitespace-style' includes the value
   `space-after-tab::tab', replace SPACEs by TABs.
   If `whitespace-style' includes the value
   `space-after-tab::space', replace TABs by SPACEs.

See `whitespace-style', `indent-tabs-mode' and `tab-width' for
documentation.
(defalias 'whitespace-cleanup-region #[(start end) "\203 \306\307!\207	\n^\310	\n]!\f\311\211%&'()\212\312 *\313\216\314+>\203W \315 ,)b\210\316,(\317#\203S \320 \321\224b\210\322 \210l\2045 j\210\2025 )\202\200 \323+>\203m \324\325)(\315\326!\321%\210\202\200 \327+>\203\200 \324\330)(\315\331!\321%\210\332+>\203\222 \324\333)(-\334%\210\335+>\203\257 \324\203\242 \325\202\243 \330)(\336 \334%\210\202\330 \337+>\203\305 \324\325)(\336\326!\334%\210\202\330 \340+>\203\330 \324\330)(\336\331!\334%\210\341+>\203\375 \324\203\350 \325\202\351 \330)(.\203\367 \334\202\370 \342%\210\202$\343+>\203\324\325)(.\334%\210\202$\344+>\203$\324\330)(.\342%\210+(\311\211\223.\207" [buffer-read-only start end whitespace-indent-tabs-mode whitespace-tab-width tmp whitespace-warn-read-only "cleanup region" copy-marker nil match-data ((byte-code "\301\302\"\207" [save-match-data-internal set-match-data evaporate] 3)) indentation whitespace-indentation-regexp re-search-forward t current-indentation 0 delete-horizontal-space indentation::tab whitespace-replace-action tabify tab indentation::space untabify space trailing delete-region 1 space-after-tab whitespace-space-after-tab-regexp space-after-tab::tab space-after-tab::space space-before-tab 2 space-before-tab::tab space-before-tab::space overwrite-mode tab-width indent-tabs-mode rend rstart save-match-data-internal whitespace-style regexp whitespace-trailing-regexp whitespace-space-before-tab-regexp] 6 (#$ . 38787) "@r"])
#@155 Do ACTION in the string matched by REGEXP between RSTART and REND.

INDEX is the level group matched by REGEXP and used by ACTION.

See also `tab-width'.
(defalias 'whitespace-replace-action #[(action rstart rend regexp index) "b\210\305	\n\306#\205 \225b\210\f\224\225\"\210\202 \207" [rstart regexp rend index action re-search-forward t] 4 (#$ . 41832)])
#@59 Return REGEXP depending on `whitespace-indent-tabs-mode'.
(defalias 'whitespace-regexp #[(regexp &optional kind) "\304=\204\n 	\203 \305\n@\"\207\306=\204 	?\205 \nA\207" [kind whitespace-indent-tabs-mode regexp whitespace-tab-width tab format space] 3 (#$ . 42201)])
#@75 Return the indentation regexp depending on `whitespace-indent-tabs-mode'.
(defalias 'whitespace-indentation-regexp #[(&optional kind) "\302	\"\207" [whitespace-indentation-regexp kind whitespace-regexp] 3 (#$ . 42481)])
#@79 Return the space-after-tab regexp depending on `whitespace-indent-tabs-mode'.
(defalias 'whitespace-space-after-tab-regexp #[(&optional kind) "\302	\"\207" [whitespace-space-after-tab-regexp kind whitespace-regexp] 3 (#$ . 42708)])
#@59 List of whitespace bogus symbol and corresponding regexp.
(defconst whitespace-report-list (byte-code "\304B\304	B\305\nB\306\307B\310\307B\311\307B\312B\313B\314B\315\307B\316\307B\317\307B\257\f\207" [whitespace-empty-at-bob-regexp whitespace-empty-at-eob-regexp whitespace-trailing-regexp whitespace-space-before-tab-regexp empty trailing indentation nil indentation::tab indentation::space space-before-tab space-before-tab::tab space-before-tab::space space-after-tab space-after-tab::tab space-after-tab::space] 13) (#$ . 42947))
#@181 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.
(defconst whitespace-report-text '(" 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              []     []  8 or more SPACEs at beginning of line\n indentation::tab         []     []  8 or more 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          []     []  8 or more SPACEs after TAB\n space-after-tab::tab     []     []  8 or more SPACEs after TAB: SPACEs\n space-after-tab::space   []     []  8 or more 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         []     []  8 or more 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          []     []  8 or more SPACEs after TAB\n space-after-tab::tab     []     []  8 or more SPACEs after TAB: SPACEs\n space-after-tab::space   []     []  8 or more SPACEs after TAB: TABs\n\n indent-tabs-mode =\n tab-width        = \n\n") (#$ . 43494))
#@46 The buffer name for whitespace bogus report.
(defconst whitespace-report-buffer-name "*Whitespace Report*" (#$ . 45616))
#@1276 Report some whitespace problems in buffer.

Return nil if there is no whitespace problem; otherwise, return
non-nil.

If FORCE is non-nil or \[universal-argument] was pressed just
before calling `whitespace-report' interactively, it forces
`whitespace-style' to have:

   empty
   trailing
   indentation
   space-before-tab
   space-after-tab

If REPORT-IF-BOGUS is non-nil, it reports only when there are any
whitespace problems in buffer.

Report if some of the following whitespace problems exist:

* If `indent-tabs-mode' is non-nil:
   empty		1. empty lines at beginning of buffer.
   empty		2. empty lines at end of buffer.
   trailing		3. SPACEs or TABs at end of line.
   indentation		4. 8 or more SPACEs at beginning of line.
   space-before-tab	5. SPACEs before TAB.
   space-after-tab	6. 8 or more SPACEs after TAB.

* If `indent-tabs-mode' is nil:
   empty		1. empty lines at beginning of buffer.
   empty		2. empty lines at end of buffer.
   trailing		3. SPACEs or TABs at end of line.
   indentation		4. TABS at beginning of line.
   space-before-tab	5. SPACEs before TAB.
   space-after-tab	6. 8 or more SPACEs after TAB.

See `whitespace-style' for documentation.
See also `whitespace-cleanup' and `whitespace-cleanup-region' for
cleaning up these problems.
(defalias 'whitespace-report #[(&optional force report-if-bogus) "\302ed	$\207" [force report-if-bogus whitespace-report-region] 5 (#$ . 45745) (list current-prefix-arg)])
#@1285 Report some whitespace problems in a region.

Return nil if there is no whitespace problem; otherwise, return
non-nil.

If FORCE is non-nil or \[universal-argument] was pressed just
before calling `whitespace-report-region' interactively, it
forces `whitespace-style' to have:

   empty
   indentation
   space-before-tab
   trailing
   space-after-tab

If REPORT-IF-BOGUS is non-nil, it reports only when there are any
whitespace problems in buffer.

Report if some of the following whitespace problems exist:

* If `indent-tabs-mode' is non-nil:
   empty		1. empty lines at beginning of buffer.
   empty		2. empty lines at end of buffer.
   trailing		3. SPACEs or TABs at end of line.
   indentation		4. 8 or more SPACEs at beginning of line.
   space-before-tab	5. SPACEs before TAB.
   space-after-tab	6. 8 or more SPACEs after TAB.

* If `indent-tabs-mode' is nil:
   empty		1. empty lines at beginning of buffer.
   empty		2. empty lines at end of buffer.
   trailing		3. SPACEs or TABs at end of line.
   indentation		4. TABS at beginning of line.
   space-before-tab	5. SPACEs before TAB.
   space-after-tab	6. 8 or more SPACEs after TAB.

See `whitespace-style' for documentation.
See also `whitespace-cleanup' and `whitespace-cleanup-region' for
cleaning up these problems.
(defalias 'whitespace-report-region #[(start end &optional force report-if-bogus) "\206 	\212\306 \307\216\310\f^\f]\311\312\"\203( \202) \313\203\254 \314!\210 !\"#r\315!q\210\316 \210#\203N $@\202Q $Ac\210eb\210\317y\210\310%\211&\203\213 &@%\320y\210\321\322%@'>\"\210\321\323@\"\210A&A\211&\204d *\320y\210\324#!\210\324\"!\210\203\247 db\210\325\326\327\330\261\210\331p!\210+.\207" [current-prefix-arg force save-match-data-internal has-bogus start end match-data ((byte-code "\301\302\"\207" [save-match-data-internal set-match-data evaporate] 3)) nil mapcar #[(option) "\203\n \306\307	@\"\210\nb\210	@\310=\203 \311 \202[ 	@\312=\203& \311\313!\202[ 	@\314=\2033 \311\315!\202[ 	@\316=\203? \317 \202[ 	@\320=\203L \317\313!\202[ 	@\321=\203Y \317\315!\202[ 	A\322\f\323#\205g \323\211)\207" [force option rstart regexp rend has-bogus add-to-list whitespace-style indentation whitespace-indentation-regexp indentation::tab tab indentation::space space space-after-tab whitespace-space-after-tab-regexp space-after-tab::tab space-after-tab::space re-search-forward t] 4] t whitespace-kill-buffer get-buffer-create erase-buffer 3 1 whitespace-mark-x 27 7 whitespace-insert-value " Type `M-x whitespace-cleanup'" " to cleanup the buffer.\n\n" " Type `M-x whitespace-cleanup-region'" " to cleanup a region.\n\n" whitespace-display-window rstart rend whitespace-report-list bogus-list report-if-bogus whitespace-report-buffer-name whitespace-indent-tabs-mode whitespace-tab-width ws-tab-width ws-indent-tabs-mode whitespace-report-text option --dolist-tail-- whitespace-style] 5 (#$ . 47201) "r"])
#@65 Used to remember whether a buffer had font lock mode on or not.
(defvar whitespace-font-lock-mode nil (#$ . 50150))
#@70 Used to remember whether a buffer initially had font lock on or not.
(defvar whitespace-font-lock nil (#$ . 50272))
#@50 Used to save locally `font-lock-keywords' value.
(defvar whitespace-font-lock-keywords nil (#$ . 50394))
#@37 Text for whitespace toggle options.
(defconst whitespace-help-text " Whitespace Toggle Options                  | scroll up  :  SPC   or > |\n                                            | scroll down:  M-SPC or < |\n FACES                                      \\__________________________/\n []  f   - toggle face visualization\n []  t   - toggle TAB visualization\n []  s   - toggle SPACE and HARD SPACE visualization\n []  r   - toggle trailing blanks visualization\n []  l   - toggle \"long lines\" visualization\n []  L   - toggle \"long lines\" tail visualization\n []  n   - toggle NEWLINE visualization\n []  e   - toggle empty line at bob and/or eob visualization\n []  C-i - toggle indentation SPACEs visualization (via `indent-tabs-mode')\n []  I   - toggle indentation SPACEs visualization\n []  i   - toggle indentation TABs visualization\n []  C-a - toggle SPACEs after TAB visualization (via `indent-tabs-mode')\n []  A   - toggle SPACEs after TAB: SPACEs visualization\n []  a   - toggle SPACEs after TAB: TABs visualization\n []  C-b - toggle SPACEs before TAB visualization (via `indent-tabs-mode')\n []  B   - toggle SPACEs before TAB: SPACEs visualization\n []  b   - toggle SPACEs before TAB: TABs visualization\n\n DISPLAY TABLE\n []  T - toggle TAB visualization\n []  S - toggle SPACE and HARD SPACE visualization\n []  N - toggle NEWLINE visualization\n\n      x - restore `whitespace-style' value\n\n      ? - display this text\n\n" (#$ . 50505))
#@48 The buffer name for whitespace toggle options.
(defconst whitespace-help-buffer-name "*Whitespace Toggle Options*" (#$ . 51983))
#@41 Insert VALUE at column 20 of next line.
(defalias 'whitespace-insert-value #[(value) "\301y\210\302\303\304\"\210\305\306\"c\207" [value 1 move-to-column 20 t format "%s"] 3 (#$ . 52118)])
#@67 Insert the mark ('X' or ' ') after NCHARS depending on CONDITION.
(defalias 'whitespace-mark-x #[(nchars condition) "u\210	\203 \302\202\f \303c\207" [nchars condition "X" " "] 1 (#$ . 52314)])
#@63 Insert the option mark ('X' or ' ') in toggle options buffer.
(defalias 'whitespace-insert-option-mark #[(the-list the-value) "eb\210\304y\210\305\211\205/ \n@\211\306=\203 \304y\210\202' \307y\210\310\304	>\"\210\nA\211\204 \305*\207" [the-list sym --dolist-tail-- the-value 2 nil help-newline 1 whitespace-mark-x] 5 (#$ . 52516)])
#@40 Display the whitespace toggle options.
(defalias 'whitespace-help-on #[(style) "\305!?\205! \306 \210\307!r	q\210\310 \210\nc\210\311\f\"\210\312	!*\207" [whitespace-help-buffer-name buffer whitespace-help-text whitespace-style-value-list style get-buffer delete-other-windows get-buffer-create erase-buffer whitespace-insert-option-mark whitespace-display-window] 3 (#$ . 52863)])
#@33 Display BUFFER in a new window.
(defalias 'whitespace-display-window #[(buffer) "eb\210\303\304!\210\305 \306_W\203 \307	!\210\310\311!\210\312 \313\n	\"\210\314\n!)\207" [window-min-height buffer win set-buffer-modified-p nil window-height 2 kill-buffer error "Window height is too small; can't split window to display whitespace toggle options" split-window set-window-buffer shrink-window-if-larger-than-buffer] 3 (#$ . 53255)])
#@54 Kill buffer BUFFER-NAME and windows related with it.
(defalias 'whitespace-kill-buffer #[(buffer-name) "\302!\211\205 \303	!\210\304	!)\207" [buffer-name buffer get-buffer delete-windows-on kill-buffer] 3 (#$ . 53696)])
#@64 Remove the buffer and window of the whitespace toggle options.
(defalias 'whitespace-help-off #[nil "\301!\207" [whitespace-help-buffer-name whitespace-kill-buffer] 2 (#$ . 53925)])
#@89 Scroll help window, if it exists.

If UP is non-nil, scroll up; otherwise, scroll down.
(defalias 'whitespace-help-scroll #[(&optional up) "\300\301\302\217\207" [data-help (byte-code "\305!\211\203, \306 \307\310\311 \"r\312\216\313\314	!\315\"\210\f\203% \316\317!\202( \320\317!,\202. \321 )\207" [whitespace-help-buffer-name buffer save-selected-window-alist save-selected-window-window up get-buffer selected-window mapcar #[(frame) "\301!D\207" [frame frame-selected-window] 3] frame-list ((byte-code "\305\211\2030 \n@\306	@!\203) \307	\211A@)!\203) \310	@	\211A@)\311#\210\nA\211\204 *\307\f!\203< \312\f\311\"\210\305\207" [save-selected-window-alist elt --dolist-tail-- x save-selected-window-window nil frame-live-p window-live-p set-frame-selected-window norecord select-window] 5)) select-window get-buffer-window norecord scroll-up 3 scroll-down ding] 5) (((error)))] 3 (#$ . 54114)])
#@1280 Interactive function to read a char and return a symbol.

If LOCAL-P is non-nil, it uses a local context; otherwise, it
uses a global context.

It accepts one of the following chars:

  CHAR	MEANING
  (VIA FACES)
   f	toggle face visualization
   t	toggle TAB visualization
   s	toggle SPACE and HARD SPACE visualization
   r	toggle trailing blanks visualization
   l	toggle "long lines" visualization
   L	toggle "long lines" tail visualization
   n	toggle NEWLINE visualization
   e	toggle empty line at bob and/or eob visualization
   C-i	toggle indentation SPACEs visualization (via `indent-tabs-mode')
   I	toggle indentation SPACEs visualization
   i	toggle indentation TABs visualization
   C-a	toggle SPACEs after TAB visualization (via `indent-tabs-mode')
   A	toggle SPACEs after TAB: SPACEs visualization
   a	toggle SPACEs after TAB: TABs visualization
   C-b	toggle SPACEs before TAB visualization (via `indent-tabs-mode')
   B	toggle SPACEs before TAB: SPACEs visualization
   b	toggle SPACEs before TAB: TABs visualization

  (VIA DISPLAY TABLE)
   T	toggle TAB visualization
   S	toggle SPACE and HARD SPACE visualization
   N	toggle NEWLINE visualization

   x	restore `whitespace-style' value
   ?	display brief help

See also `whitespace-toggle-option-alist'.
(defalias 'whitespace-interactive-char #[(local-p) "\203 	\202	 \n?\211\203 \f\202 \203 \202 \f\306\307\203) \310\202* \311\"\312\211\313\213\210-C\207" [local-p whitespace-mode global-whitespace-mode is-off whitespace-style whitespace-active-style format "Whitespace Toggle %s (type ? for further options)-" "Local" "Global" nil ((byte-code "\300\301\302\217\207" [data (byte-code "\305!\211\n\236A\211\204R 	\306=\203 \307\f!\210\202  	\310=\203' \311\312!\210\202  	\313=\2033 \311 \210\202  	\314=\203@ \311\312!\210\202  	\315=\203L \311 \210\202  \316 \210\202  \317 \210\320\321!\207" [prompt ch whitespace-toggle-option-alist sym style read-char 63 whitespace-help-on 32 whitespace-help-scroll t 134217760 62 60 ding whitespace-help-off message " "] 3) (((quit error) (byte-code "\301 \210\302\303!!\207" [data whitespace-help-off error error-message-string] 3)))] 3)) whitespace-toggle-style style prompt ch sym] 4 (#$ . 55035)])
#@274 Toggle options in THE-LIST based on list ARG.

If LOCAL-P is non-nil, it uses a local context; otherwise, it
uses a global context.

ARG is a list of options to be toggled.

THE-LIST is a list of options.  This list will be toggled and the
resultant list will be returned.
(defalias 'whitespace-toggle-list #[(local-p arg the-list) "\203 	\202	 \n\204 \306\f!<\203 \202 C\307\n\211\203b @\211\n\310=\204Y \n\303=\203= \202Y \n\f>\203Y \n\f>\203T \311\n\f\"\202X \n\fBA\211\204& *\f\207" [local-p whitespace-mode global-whitespace-mode whitespace-style the-list arg copy-sequence nil help-newline delq sym --dolist-tail-- whitespace-style-value-list] 4 (#$ . 57286)])
#@37 Used to save a local display table.
(defvar whitespace-display-table nil (#$ . 57989))
#@72 Used to remember whether a buffer initially had a local display table.
(defvar whitespace-display-table-was-local nil (#$ . 58082))
#@35 Turn on whitespace visualization.
(defalias 'whitespace-turn-on #[nil "\306\307\310\311\312$\210\313\300!\210\311\313\301!\210\311\313\302!\210\311\313\303!\210\311\313\304!\210\311\313\314!\210<\2032 \2024 C\f\313\315!\210\313\316!\210\f\205P \317 \210\320 \207" [whitespace-font-lock-mode whitespace-font-lock whitespace-font-lock-keywords whitespace-display-table whitespace-display-table-was-local whitespace-style add-hook write-file-functions whitespace-write-file-hook nil t make-local-variable whitespace-active-style whitespace-indent-tabs-mode whitespace-tab-width whitespace-color-on whitespace-display-char-on indent-tabs-mode tab-width] 5 (#$ . 58220)])
#@36 Turn off whitespace visualization.
(defalias 'whitespace-turn-off #[nil "\301\302\303\304#\210\205 \305 \210\306 \207" [whitespace-active-style remove-hook write-file-functions whitespace-write-file-hook t whitespace-color-off whitespace-display-char-off] 4 (#$ . 58911)])
#@51 Return t if there is some visualization via face.
(defalias 'whitespace-style-face-p #[nil "\301>\205c \302>\206c \303>\206c \304>\206c \305>\206c \306>\206c \307>\206c \310>\206c \311>\206c \312>\206c \313>\206c \314>\206c \315>\206c \316>\206c \317>\206c \320>\206c \321>\207" [whitespace-active-style face tabs spaces trailing lines lines-tail newline empty indentation indentation::tab indentation::space space-after-tab space-after-tab::tab space-after-tab::space space-before-tab space-before-tab::tab space-before-tab::space] 2 (#$ . 59192)])
#@30 Turn on color visualization.
(defalias 'whitespace-color-on #[nil "\306 \205\324\204 \307\310	!\311\303!\210`\311\304!\210\312\311\305!\210\313 \311\314!\210\315 \f\311\316!\210\317\320\321\322\317\307$\210\320\323\316\317\307$\210\311\324!\210\325\312!\210\3264>\203f \327\3175\3306\307F7\3308\307FD\307#\210\3314>\203z \327\3179\330:\307FC\307#\210\3324>\203\215 \327\317\333\330;\307FC\307#\210\3344>\204\233 \3354>\203\337 \327\317<\206\244 =>\336\337?\211S>?\245>?\246@\340@!\203\303 \341\202\310 \336\342@\")%)\3344>\203\326 \312\202\327 \343A\307FC\307#\210\3444>\203\377 \327\317BC\203\363 \330\202\364 \343D\307FC\307#\210\202*\3454>\203\327\317B\330D\307FC\307#\210\202*\3464>\203*\327\317B\343D\307FC\307#\210\3474>\203A\327\317\350 \330E\307FC\307#\210\202n\3514>\203Y\327\317\350\352!\330E\307FC\307#\210\202n\3534>\203n\327\317\350\354!\330E\307FC\307#\210\3554>\203\215\327\317\356\330F\307FC\307#\210\327\317\357\330F\307FC\307#\210\3604>\203\244\327\317\361 \330G\307FC\307#\210\202\321\3624>\203\274\327\317\361\352!\330G\307FC\307#\210\202\321\3634>\203\321\327\317\361\354!\330G\307FC\307#\210\325\330!\207" [whitespace-font-lock font-lock-keywords whitespace-font-lock-keywords whitespace-point whitespace-font-lock-refontify whitespace-bob-marker whitespace-style-face-p t copy-sequence make-local-variable 0 point-min-marker whitespace-eob-marker point-max-marker whitespace-buffer-changed nil add-hook post-command-hook whitespace-post-command-hook before-change-functions whitespace-font-lock-mode font-lock-mode spaces font-lock-add-keywords 1 tabs trailing whitespace-trailing-regexp lines lines-tail format "^\\([^	\n]\\{%s\\}\\|[^	\n]\\{0,%s\\}	\\)\\{%d\\}%s\\(.+\\)$" zerop "" ".\\{%d\\}" 2 space-before-tab space-before-tab::tab space-before-tab::space indentation whitespace-indentation-regexp indentation::tab tab indentation::space space empty whitespace-empty-at-bob-regexp whitespace-empty-at-eob-regexp space-after-tab whitespace-space-after-tab-regexp space-after-tab::tab space-after-tab::space whitespace-active-style whitespace-space-regexp whitespace-space whitespace-hspace-regexp whitespace-hspace whitespace-tab-regexp whitespace-tab whitespace-trailing whitespace-line-column fill-column line-column whitespace-tab-width rem whitespace-line whitespace-space-before-tab-regexp whitespace-indent-tabs-mode whitespace-space-before-tab whitespace-indentation whitespace-empty whitespace-space-after-tab] 10 (#$ . 59765)])
#@31 Turn off color visualization.
(defalias 'whitespace-color-off #[nil "\304 \205  \305\306!\210\307\310\311\312#\210\307\313\314\312#\210\203 \315	\305!\207" [whitespace-font-lock whitespace-font-lock-keywords font-lock-keywords whitespace-font-lock-mode whitespace-style-face-p font-lock-mode 0 remove-hook post-command-hook whitespace-post-command-hook t before-change-functions whitespace-buffer-changed nil] 4 (#$ . 62316)])
#@70 Match trailing spaces which do not contain the point at end of line.
(defalias 'whitespace-trailing-regexp #[(limit) "\305\306	\n\305#\203 \307 \310\216\f\311\225U*\202 \312\211\204 )\207" [status whitespace-trailing-regexp limit save-match-data-internal whitespace-point t re-search-forward match-data ((byte-code "\301\302\"\207" [save-match-data-internal set-match-data evaporate] 3)) 1 nil] 4 (#$ . 62754)])
#@92 Match spaces at beginning of buffer which do not contain the point at beginning of buffer.
(defalias 'whitespace-empty-at-bob-regexp #[(limit) "`\306\211\307U\203* \n\307U?\205 \310!\211\203\" \f\307\225\306\223\210\202q \f	\306\223\210\202q \fX\203P \310!\211\203H \307\225W\203q \f\307\225\306\223\210\202q \f	\306\223\210\202q 	\fX\203o \310!\211\203g \f\307\225\306\223\210\202q \f	\306\223\210\202q \306\203y \307\225b\210*\207" [r b whitespace-point whitespace-empty-at-bob-regexp whitespace-bob-marker limit nil 1 looking-at] 4 (#$ . 63180)])
(defalias 'whitespace-looking-back #[(regexp limit) "\212\302x\303U?\205 n\204 \304y\210\305	!)\207" [limit regexp " 	\n" 0 1 looking-at] 2])
(put 'whitespace-looking-back 'byte-optimizer 'byte-compile-inline-expand)
#@80 Match spaces at end of buffer which do not contain the point at end of buffer.
(defalias 'whitespace-empty-at-eob-regexp #[(limit) "`\306 T\307	U\203M \f	U\2043 b\210\n\f\212\310x\311U?\2051 n\204- \312y\210\313\f!+\203A \312\224\307\223\210\202\326 \307\223\210\nb\210\202\326 \nY\203\224 b\210\n\f\212\310x\311U?\205q n\204m \312y\210\313\f!+\211\203\210 \312\224\nV\203\326 \312\224\307\223\210\202\326 \307\223\210\nb\210\202\326 Y\203\324 b\210\n\f\212\310x\311U?\205\270 n\204\264 \312y\210\313\f!+\211\203\310 \312\224\307\223\210\202\326 \307\223\210\nb\210\202\326 \307+\207" [r e b limit whitespace-point whitespace-empty-at-eob-regexp buffer-size nil " 	\n" 0 1 looking-at regexp whitespace-eob-marker] 4 (#$ . 63970)])
#@48 Set `whitespace-buffer-changed' variable to t.
(defalias 'whitespace-buffer-changed #[(beg end) "\301\211\207" [whitespace-buffer-changed t] 2 (#$ . 64755)])
#@85 Save current point into `whitespace-point' variable.
Also refontify when necessary.
(defalias 'whitespace-post-command-hook #[nil "`l\203 h\306U\206K h\307U\206K \310U\206K 	\203/ \nX\206K \nTU\203/ h\311U\206K \312 TU\206K 	\205K Y\206K SU\205K g\311U\211\204V \313V\205e \314\f\203` \310\202b S\315 )\207" [whitespace-point whitespace-buffer-changed whitespace-bob-marker whitespace-eob-marker refontify whitespace-font-lock-refontify 32 9 1 10 buffer-size 0 nil jit-lock-refontify] 3 (#$ . 64920)])
#@60 Return t if there is some visualization via display table.
(defalias 'whitespace-style-mark-p #[nil "\301>\206 \302>\206 \303>\207" [whitespace-active-style tab-mark space-mark newline-mark] 2 (#$ . 65443)])
(defalias 'whitespace-char-valid-p #[(char) "\301W\206	 \302!\207" [char 256 characterp] 2])
(put 'whitespace-char-valid-p 'byte-optimizer 'byte-compile-inline-expand)
#@64 Return true if every character in vector VEC can be displayed.
(defalias 'whitespace-display-vector-p #[(vec) "G\211\303V\205& 	S\211\303Y\203# 	H\211\304W\206 \305\n!)\204	 	\303W)\207" [vec i char 0 256 characterp] 3 (#$ . 65832)])
#@36 Turn on character display mapping.
(defalias 'whitespace-display-char-on #[nil "\205\267 \306 \205\267 \307\211\204 \310\311\f!\311\f!\f\204\" \312 \307\211\205\266 @\211@>\203\254 \211AA)\211\203T \313\n@!\204T \nA\211\204F \n\203\254 \311\n@!\211A@)\314=\203\240 \315>\203\240 	G\316W\203\237 	H\314=\204\226 	\317	H\"I\210T\211\202z *\f\211A@)	I\210A\211\204, \307,\207" [whitespace-display-mappings vec vecs whitespace-display-table-was-local buffer-display-table whitespace-display-table whitespace-style-mark-p nil t copy-sequence make-display-table whitespace-display-vector-p 10 newline 0 make-glyph-code entry --dolist-tail-- whitespace-style x whitespace-active-style i --dotimes-limit-- whitespace-newline] 6 (#$ . 66078)])
#@37 Turn off character display mapping.
(defalias 'whitespace-display-char-off #[nil "\205 \304 \205 	\205 \305\n\211\207" [whitespace-display-mappings whitespace-display-table-was-local whitespace-display-table buffer-display-table whitespace-style-mark-p nil] 2 (#$ . 66880)])
#@63 Action to be taken always when local whitespace is turned on.
(defalias 'whitespace-action-when-on #[nil "\301>\203	 \302 \207\303>\205 \304\305\306\"\207" [whitespace-action cleanup whitespace-cleanup report-on-bogus whitespace-report nil t] 3 (#$ . 67167)])
#@105 Action to be taken when buffer is written.
It should be added buffer-locally to `write-file-functions'.
(defalias 'whitespace-write-file-hook #[nil "\301>\203\f \302 \210\202 \303>\203 \304\305\306\"\203 \307\310\311 \"\210\305\207" [whitespace-action auto-cleanup whitespace-cleanup abort-on-bogus whitespace-report nil t error "Abort write due to whitespace problems in %s" buffer-name] 3 (#$ . 67437)])
#@30 Warn if buffer is read-only.
(defalias 'whitespace-warn-read-only #[(msg) "\302>\205\f \303\304	\305 #\207" [whitespace-action msg warn-if-read-only message "Can't %s: %s is read-only" buffer-name] 4 (#$ . 67854)])
#@32 Unload the whitespace library.
(defalias 'whitespace-unload-function #[nil "\302\303!\210r\304 \305\211\203 	@\211q\210\306\303!\210	A\211\204 +\305\207" [buf --dolist-tail-- global-whitespace-mode -1 buffer-list nil whitespace-mode] 3 (#$ . 68076)])
(byte-code "\300\301!\210\302\303!\207" [provide whitespace run-hooks whitespace-load-hook] 2)
