summaryrefslogtreecommitdiff
path: root/rust-mode.el
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-01-20 01:01:45 -0800
committerBrian Anderson <banderson@mozilla.com>2012-01-20 01:04:50 -0800
commit6aa0a912a54625ffc1932836ebe067b275cb392b (patch)
treebcb6859a22ae9db3c936c0953049fc9658a63510 /rust-mode.el
parentf0e4edc220bda13693292b2c3d322eae572d65aa (diff)
downloadrust-mode-6aa0a912a54625ffc1932836ebe067b275cb392b.tar.gz
rust-mode: tag -> enum. Closes #1577
Diffstat (limited to 'rust-mode.el')
-rw-r--r--rust-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust-mode.el b/rust-mode.el
index e4f0ee6..00b6501 100644
--- a/rust-mode.el
+++ b/rust-mode.el
@@ -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"