Function: whitespace-report

whitespace-report is an autoloaded, interactive and byte-compiled function defined in whitespace.el.gz.

Signature

(whitespace-report &optional FORCE REPORT-IF-BOGUS)

Documentation

Report some whitespace problems in buffer.

Perform whitespace-report-region on the current buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/whitespace.el.gz
;;;###autoload
(defun whitespace-report (&optional force report-if-bogus)
  "Report some whitespace problems in buffer.

Perform `whitespace-report-region' on the current buffer."
  (interactive (list current-prefix-arg))
  (whitespace-report-region (point-min) (point-max)
			    force report-if-bogus))