diff options
| author | Micah Chalmer <micah@micahchalmer.net> | 2016-02-23 00:42:48 -0500 |
|---|---|---|
| committer | Micah Chalmer <micah@micahchalmer.net> | 2016-02-23 00:42:48 -0500 |
| commit | 00e5366f70d4627db82170f736712861ed8de976 (patch) | |
| tree | 962fcc2f6c061541f3afb18a7a1fed5e6486adec | |
| parent | b1cca0fa73633dcee5704423d9421bfccf12385d (diff) | |
| parent | 86d636aad77e6918e11bca0328c9cc0d0c9db0f9 (diff) | |
| download | rust-mode-00e5366f70d4627db82170f736712861ed8de976.tar.gz | |
Merge pull request #122 from kraai/remove-duplicate-keywords
Remove duplicate keywords
| -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 b20c709..686498b 100644 --- a/rust-mode.el +++ b/rust-mode.el @@ -1187,7 +1187,7 @@ idomenu (imenu with `ido-mode') for best mileage.") (concat "^\\s-*\\(?:priv\\|pub\\)?\\s-*" (regexp-opt '("enum" "struct" "type" "mod" "use" "fn" "static" "impl" - "extern" "impl" "static" "trait")))) + "extern" "trait")))) (defun rust-beginning-of-defun (&optional arg) "Move backward to the beginning of the current defun. |
