emacs: Make 'mut' a keyword

This commit is contained in:
Brian Anderson 2012-03-27 15:10:25 -07:00
parent f4ee5582c7
commit 42f2810eca
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@
(dolist (word '("mod" "type" "resource" "fn" "enum" "iface" "impl")) (dolist (word '("mod" "type" "resource" "fn" "enum" "iface" "impl"))
(puthash word 'def table)) (puthash word 'def table))
(dolist (word '("if" "else" "while" "do" "for" "break" "cont" "ret" "be" "fail" "const" (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")) "use" "pure" "unsafe"))
(puthash word t table)) (puthash word t table))
(puthash "alt" 'alt table) (puthash "alt" 'alt table)