Function: nxml-toggle-char-ref-extra-display
nxml-toggle-char-ref-extra-display is an interactive and byte-compiled
function defined in nxml-mode.el.gz.
Signature
(nxml-toggle-char-ref-extra-display ARG)
Documentation
Toggle the display of extra information for character references.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/nxml/nxml-mode.el.gz
(defun nxml-toggle-char-ref-extra-display (arg)
"Toggle the display of extra information for character references."
(interactive "P")
(let ((new (if (null arg)
(not nxml-char-ref-extra-display)
(> (prefix-numeric-value arg) 0))))
(when (not (eq new nxml-char-ref-extra-display))
(setq nxml-char-ref-extra-display new)
(font-lock-flush))))