diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-01-20 01:01:45 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-01-20 01:04:50 -0800 |
| commit | 6aa0a912a54625ffc1932836ebe067b275cb392b (patch) | |
| tree | bcb6859a22ae9db3c936c0953049fc9658a63510 | |
| parent | f0e4edc220bda13693292b2c3d322eae572d65aa (diff) | |
| download | rust-mode-6aa0a912a54625ffc1932836ebe067b275cb392b.tar.gz | |
rust-mode: tag -> enum. Closes #1577
| -rw-r--r-- | rust-mode.el | 2 |
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" |
