diff options
| author | Brian Anderson <andersrb@gmail.com> | 2012-08-11 16:21:10 -0700 |
|---|---|---|
| committer | Brian Anderson <andersrb@gmail.com> | 2012-08-11 16:21:10 -0700 |
| commit | de813531231df26624c7d1a13768baceb0ad4510 (patch) | |
| tree | 73f495f74fbc31118ac1bee8d2d72c7385038613 /rust-mode.el | |
| parent | 50e55e41d547fcf4b659c9f2e2010610b396d7b5 (diff) | |
| parent | 15d31a9e50dd2dbf20413fe7c53f5e4989437661 (diff) | |
| download | rust-mode-de813531231df26624c7d1a13768baceb0ad4510.tar.gz | |
Merge pull request #3185 from megakorre/master
Removed comma from rust-mode.el
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 6978685..328b9a8 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" |
