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 | 8d26d86b708b4597e761034fe3a2cc8a7a08c85f (patch) | |
| tree | 8d9828cea2585d1939c288519e690e3cac2f9552 /src | |
| parent | 2e0c1dbd4f281a8451c1e9f276ff088d9be15977 (diff) | |
| download | rust-8d26d86b708b4597e761034fe3a2cc8a7a08c85f.tar.gz rust-8d26d86b708b4597e761034fe3a2cc8a7a08c85f.zip | |
removed a comma from the keyword list to get
fn keyword highlighted
Diffstat (limited to 'src')
| -rw-r--r-- | src/etc/emacs/rust-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/etc/emacs/rust-mode.el b/src/etc/emacs/rust-mode.el index 94fc9059f48..03191c5a1b4 100644 --- a/src/etc/emacs/rust-mode.el +++ b/src/etc/emacs/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" |
