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

    emacs: Make 'mut' a keyword
---
 rust-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rust-mode.el b/rust-mode.el
index 00b6501..7dc37bc 100644
--- a/rust-mode.el
+++ b/rust-mode.el
@@ -55,7 +55,7 @@
     (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"
+                    "check" "assert" "claim" "prove" "native" "import" 
"export" "let" "mut" "log"
                     "use" "pure" "unsafe"))
       (puthash word t table))
     (puthash "alt" 'alt table)

Reply via email to