Variable: rx--builtin-symbols
rx--builtin-symbols is a variable defined in rx.el.gz.
Value
(nonl not-newline any anychar anything unmatchable bol eol line-start line-end bos eos string-start string-end bow eow word-start word-end symbol-start symbol-end point word-boundary not-word-boundary not-wordchar digit numeric num control cntrl hex-digit hex xdigit blank graphic graph printing print alphanumeric alnum letter alphabetic alpha ascii nonascii lower lower-case punctuation punct space whitespace white upper upper-case word wordchar unibyte multibyte)
Documentation
List of built-in rx variable-like symbols.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/rx.el.gz
(defconst rx--builtin-symbols
(append '(nonl not-newline any anychar anything unmatchable
bol eol line-start line-end
bos eos string-start string-end
bow eow word-start word-end
symbol-start symbol-end
point word-boundary not-word-boundary not-wordchar)
(mapcar #'car rx--char-classes))
"List of built-in rx variable-like symbols.")