branch: elpa/rust-mode
commit 256de2342004ee854126c9fb98bdca62eb63042d
Author: Niko Matsakis <[email protected]>
Commit: Niko Matsakis <[email protected]>

    emacs: add match as keyword
---
 rust-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rust-mode.el b/rust-mode.el
index c79ca52..94fc905 100644
--- a/rust-mode.el
+++ b/rust-mode.el
@@ -70,7 +70,7 @@
                     "unchecked" "unsafe"
                     "while"))
       (puthash word t table))
-    (puthash "alt" 'alt table)
+    (puthash "match" 'alt table)
     (dolist (word '("true" "false")) (puthash word 'atom table))
     table))
 ;; FIXME type-context keywords

Reply via email to