summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--support/emacs/scala-mode.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/support/emacs/scala-mode.el b/support/emacs/scala-mode.el
index 61fbf4d3ca..2721321cba 100644
--- a/support/emacs/scala-mode.el
+++ b/support/emacs/scala-mode.el
@@ -117,11 +117,11 @@ reserved keywords when used alone.")
"Regular expression matching a single Scala special character")
(defconst scala-keywords-re
- (regexp-opt '("abstract" "case" "class" "catch" "def" "do" "else"
- "extends" "final" "finally" "for" "if" "import" "new" "object"
- "override" "package" "private" "protected" "return"
- "sealed" "super" "this" "throw" "trait" "try" "type" "val" "var"
- "with" "while" "yield")
+ (regexp-opt '("abstract" "case" "class" "catch" "def" "do" "else" "extends"
+ "final" "finally" "for" "if" "implicit" "import" "new" "match"
+ "object" "override" "package" "private" "protected" "return"
+ "sealed" "super" "this" "throw" "trait" "try" "type" "val"
+ "var" "with" "while" "yield")
'words))
(defconst scala-constants-re