Variable: rng-c-token-re

rng-c-token-re is a variable defined in rng-cmpct.el.gz.

Value

"[&|]=\\|[][()|&,*+?{}~=-]\\|'\\(''\\([^']\\|'[^']\\|''[^']\\)*''\\|[^'\n]*\\)'\\|\"\\(\"\"\\([^\"]\\|\"[^\"]\\|\"\"[^\"]\\)*\"\"\\|[^\"\n]*\\)\"\\|\\w+\\(:\\(\\*\\|\\w+\\)\\)?\\|\\\\\\w+\\|>>"

Documentation

Regular expression to match a token in the compact syntax.

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/rng-cmpct.el.gz
(defconst rng-c-token-re
  (concat "[&|]=" "\\|"
	  "[][()|&,*+?{}~=-]" "\\|"
	  rng-c-literal-1-re "\\|"
	  rng-c-literal-2-re "\\|"
	  rng-c-ncname-re "\\(:\\(\\*\\|" rng-c-ncname-re "\\)\\)?" "\\|"
	  "\\\\" rng-c-ncname-re "\\|"
	  ">>")
  "Regular expression to match a token in the compact syntax.")