diff options
| author | Patrik Kårlin <patrik.karlin@gmail.com> | 2012-08-12 00:19:25 +0200 |
|---|---|---|
| committer | Patrik Kårlin <patrik.karlin@gmail.com> | 2012-08-12 00:19:25 +0200 |
| commit | 15d31a9e50dd2dbf20413fe7c53f5e4989437661 (patch) | |
| tree | 6671ec483ff3085605de37c07febebff499befbe /rust-mode.el | |
| parent | 256de2342004ee854126c9fb98bdca62eb63042d (diff) | |
| download | rust-mode-15d31a9e50dd2dbf20413fe7c53f5e4989437661.tar.gz | |
removed a comma from the keyword list to get
fn keyword highlighted
Diffstat (limited to 'rust-mode.el')
| -rw-r--r-- | rust-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rust-mode.el b/rust-mode.el index 94fc905..03191c5 100644 --- a/rust-mode.el +++ b/rust-mode.el @@ -53,8 +53,8 @@ (defvar rust-value-keywords (let ((table (make-hash-table :test 'equal))) (dolist (word '("mod" "const" "class" "type" - "trait" "struct", "fn" "enum" - "impl")) + "trait" "struct" "fn" "enum" + "impl")) (puthash word 'def table)) (dolist (word '("again" "assert" "break" |
