Variable: rng-c-keywords

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

Value

("attribute" "default" "datatypes" "div" "element" "empty" "external" "grammar" "include" "inherit" "list" "mixed" "namespace" "notAllowed" "parent" "start" "string" "text" "token")

Documentation

List of strings that are keywords in the compact syntax.

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/rng-cmpct.el.gz
;;; Lexing

(defconst rng-c-keywords
  '("attribute"
    "default"
    "datatypes"
    "div"
    "element"
    "empty"
    "external"
    "grammar"
    "include"
    "inherit"
    "list"
    "mixed"
    "namespace"
    "notAllowed"
    "parent"
    "start"
    "string"
    "text"
    "token")
  "List of strings that are keywords in the compact syntax.")