Variable: wisent-escape-sequence-strings
wisent-escape-sequence-strings is a variable defined in wisent.el.gz.
Value
((7 . "'\\a'") (8 . "'\\b'") (9 . "'\\t'") (10 . "'\\n'")
(11 . "'\\v'") (12 . "'\\f'") (13 . "'\\r'") (27 . "'\\e'")
(92 . "'\\'") (127 . "'\\d'"))
Documentation
Printed representation of usual escape sequences.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/wisent/wisent.el.gz
;;; Printed representation of terminals and nonterminals
(defconst wisent-escape-sequence-strings
'(
(?\a . "'\\a'") ; C-g
(?\b . "'\\b'") ; backspace, BS, C-h
(?\t . "'\\t'") ; tab, TAB, C-i
(?\n . "'\\n'") ; newline, C-j
(?\v . "'\\v'") ; vertical tab, C-k
(?\f . "'\\f'") ; formfeed character, C-l
(?\r . "'\\r'") ; carriage return, RET, C-m
(?\e . "'\\e'") ; escape character, ESC, C-[
(?\\ . "'\\'") ; backslash character, \
(?\d . "'\\d'") ; delete character, DEL
)
"Printed representation of usual escape sequences.")