branch: elpa/rust-mode
commit 00e5366f70d4627db82170f736712861ed8de976
Merge: b1cca0f 86d636a
Author: Micah Chalmer <[email protected]>
Commit: Micah Chalmer <[email protected]>
Merge pull request #122 from kraai/remove-duplicate-keywords
Remove duplicate keywords
---
rust-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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.