rust-mode: tag -> enum. Closes #1577

This commit is contained in:
Brian Anderson 2012-01-20 01:01:45 -08:00
parent 411cb28a3e
commit 2d9910383e

View file

@ -52,7 +52,7 @@
(defvar rust-punc-chars "()[].,{}:;")
(defvar rust-value-keywords
(let ((table (make-hash-table :test 'equal)))
(dolist (word '("mod" "type" "resource" "fn" "tag" "iface" "impl"))
(dolist (word '("mod" "type" "resource" "fn" "enum" "iface" "impl"))
(puthash word 'def table))
(dolist (word '("if" "else" "while" "do" "for" "break" "cont" "ret" "be" "fail" "const"
"check" "assert" "claim" "prove" "native" "import" "export" "let" "log"