summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2005-05-16 18:49:55 +0000
committermihaylov <mihaylov@epfl.ch>2005-05-16 18:49:55 +0000
commit89a3ecc15e41c08752b6f96c358e9867f18d5c8c (patch)
treecc4f1ff260d7ee6d1170ac9c9ca9a5100b658e49 /support
parentc718a6bce618cb8b5aad367d23ecedd84ab49623 (diff)
downloadscala-89a3ecc15e41c08752b6f96c358e9867f18d5c8c.tar.gz
scala-89a3ecc15e41c08752b6f96c358e9867f18d5c8c.tar.bz2
scala-89a3ecc15e41c08752b6f96c358e9867f18d5c8c.zip
Added 'implicit' and 'match' as keywords
Diffstat (limited to 'support')
-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