Function: whitespace-mark-x
whitespace-mark-x is a byte-compiled function defined in
whitespace.el.gz.
Signature
(whitespace-mark-x NCHARS CONDITION)
Documentation
Insert the mark (X or ) after NCHARS depending on CONDITION.
Source Code
;; Defined in /usr/src/emacs/lisp/whitespace.el.gz
(defun whitespace-mark-x (nchars condition)
"Insert the mark (`X' or ` ') after NCHARS depending on CONDITION."
(forward-char nchars)
(insert (if condition "X" " ")))