summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2005-12-13 09:49:15 +0000
committermihaylov <mihaylov@epfl.ch>2005-12-13 09:49:15 +0000
commit03698af2fe2175d549188f8c72fdafcaa522a3b8 (patch)
tree77f95df4a4e9f2fd5c72b1114a58493adc760005 /support
parent2bf04d01dbd6aef10f596e0662349907f82701d5 (diff)
downloadscala-03698af2fe2175d549188f8c72fdafcaa522a3b8.tar.gz
scala-03698af2fe2175d549188f8c72fdafcaa522a3b8.tar.bz2
scala-03698af2fe2175d549188f8c72fdafcaa522a3b8.zip
added "requires" as a keyword
Diffstat (limited to 'support')
-rw-r--r--support/emacs/scala-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/support/emacs/scala-mode.el b/support/emacs/scala-mode.el
index 5540b5865d..bdddeeb479 100644
--- a/support/emacs/scala-mode.el
+++ b/support/emacs/scala-mode.el
@@ -119,9 +119,9 @@ reserved keywords when used alone.")
(defconst scala-keywords-re
(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")
+ "object" "override" "package" "private" "protected" "requires"
+ "return" "sealed" "super" "this" "throw" "trait" "try" "type"
+ "val" "var" "with" "while" "yield")
'words))
(defconst scala-constants-re