Variable: vhdl-02-keywords
vhdl-02-keywords is a variable defined in vhdl-mode.el.gz.
Value
("abs" "access" "after" "alias" "all" "and" "architecture" "array"
"assert" "attribute" "begin" "block" "body" "buffer" "bus" "case"
"component" "configuration" "constant" "disconnect" "downto" "else"
"elsif" "end" "entity" "exit" "file" "for" "function" "generate"
"generic" "group" "guarded" "if" "impure" "in" "inertial" "inout"
"is" "label" "library" "linkage" "literal" "loop" "map" "mod" "nand"
"new" "next" "nor" "not" "null" "of" "on" "open" "or" "others" "out"
"package" "port" "postponed" "procedure" "process" "protected" "pure"
"range" "record" "register" "reject" "rem" "report" "return" "rol"
"ror" "select" "severity" "shared" "signal" "sla" "sll" "sra" "srl"
"subtype" "then" "to" "transport" "type" "unaffected" "units" "until"
"use" "variable" "wait" "when" "while" "with" "xnor" "xor")
Documentation
List of VHDL'02 keywords.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Keywords and standardized words
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defconst vhdl-02-keywords
'(
"abs" "access" "after" "alias" "all" "and" "architecture" "array"
"assert" "attribute"
"begin" "block" "body" "buffer" "bus"
"case" "component" "configuration" "constant"
"disconnect" "downto"
"else" "elsif" "end" "entity" "exit"
"file" "for" "function"
"generate" "generic" "group" "guarded"
"if" "impure" "in" "inertial" "inout" "is"
"label" "library" "linkage" "literal" "loop"
"map" "mod"
"nand" "new" "next" "nor" "not" "null"
"of" "on" "open" "or" "others" "out"
"package" "port" "postponed" "procedure" "process" "protected" "pure"
"range" "record" "register" "reject" "rem" "report" "return"
"rol" "ror"
"select" "severity" "shared" "signal" "sla" "sll" "sra" "srl" "subtype"
"then" "to" "transport" "type"
"unaffected" "units" "until" "use"
"variable"
"wait" "when" "while" "with"
"xnor" "xor"
)
"List of VHDL'02 keywords.")