Merge pull request #3185 from megakorre/master

Removed comma from rust-mode.el
This commit is contained in:
Brian Anderson 2012-08-11 16:21:10 -07:00
commit 713487ddd3

View File

@ -53,8 +53,8 @@
(defvar rust-value-keywords (defvar rust-value-keywords
(let ((table (make-hash-table :test 'equal))) (let ((table (make-hash-table :test 'equal)))
(dolist (word '("mod" "const" "class" "type" (dolist (word '("mod" "const" "class" "type"
"trait" "struct", "fn" "enum" "trait" "struct" "fn" "enum"
"impl")) "impl"))
(puthash word 'def table)) (puthash word 'def table))
(dolist (word '("again" "assert" (dolist (word '("again" "assert"
"break" "break"