Variable: widget-character--escape-sequences-alist
widget-character--escape-sequences-alist is a variable defined in
wid-edit.el.gz.
Value
((9 . 116)
(10 . 110)
(32 . 115))
Documentation
Alist that associates escape sequences to a character.
Each element has the form (ESCAPE-SEQUENCE . CHARACTER).
The character widget uses this alist to display the non-printable character represented by ESCAPE-SEQUENCE as \CHARACTER, since that makes it easier to see what's in the widget.
Source Code
;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
;; Only some escape sequences, not all of them. (Bug#15925)
(defvar widget-character--escape-sequences-alist
'((?\t . ?t)
(?\n . ?n)
(?\s . ?s))
"Alist that associates escape sequences to a character.
Each element has the form (ESCAPE-SEQUENCE . CHARACTER).
The character widget uses this alist to display the
non-printable character represented by ESCAPE-SEQUENCE as \\CHARACTER,
since that makes it easier to see what's in the widget.")