diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2012-08-06 16:12:46 -0700 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2012-08-06 16:13:04 -0700 |
| commit | 256de2342004ee854126c9fb98bdca62eb63042d (patch) | |
| tree | 47d29b574bcf390364b46da6fb4cb12c95476a78 /rust-mode.el | |
| parent | 6275e8ea5920ddc58bc9c3405a74fa6925598812 (diff) | |
| download | rust-mode-256de2342004ee854126c9fb98bdca62eb63042d.tar.gz | |
emacs: add match as keyword
Diffstat (limited to 'rust-mode.el')
| -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 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 |
