branch: elpa/rust-mode
commit 6aa0a912a54625ffc1932836ebe067b275cb392b
Author: Brian Anderson <[email protected]>
Commit: Brian Anderson <[email protected]>

    rust-mode: tag -> enum. Closes #1577
---
 rust-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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"

Reply via email to