branch: elpa/rust-mode
commit 86d636aad77e6918e11bca0328c9cc0d0c9db0f9
Author: Matt Kraai <[email protected]>
Commit: Matt Kraai <[email protected]>
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.