summaryrefslogtreecommitdiff
path: root/Util/Emacs/dafny-mode.el
diff options
context:
space:
mode:
authorGravatar Rustan Leino <leino@microsoft.com>2011-06-20 14:49:48 -0700
committerGravatar Rustan Leino <leino@microsoft.com>2011-06-20 14:49:48 -0700
commita3629701b94e39ead149b4f4059f7967fc6eda7b (patch)
tree4e1a8b7ae05fe4913dcd320e27ee7a49e6e6c440 /Util/Emacs/dafny-mode.el
parent8c7c61df9b89ab12f1a679e1bc34d38fa2403761 (diff)
Dafny: removed deprecated "call" and "use" keywords from syntax highlighters
Diffstat (limited to 'Util/Emacs/dafny-mode.el')
-rw-r--r--Util/Emacs/dafny-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/Util/Emacs/dafny-mode.el b/Util/Emacs/dafny-mode.el
index b69a568a..e352ad70 100644
--- a/Util/Emacs/dafny-mode.el
+++ b/Util/Emacs/dafny-mode.el
@@ -36,8 +36,8 @@
"invariant" "decreases"
)) . font-lock-builtin-face)
`(,(dafny-regexp-opt '(
- "assert" "assume" "break" "call" "choose" "then" "else" "havoc" "if" "label" "return" "while" "print"
- "old" "forall" "exists" "new" "foreach" "in" "this" "fresh" "allocated" "use"
+ "assert" "assume" "break" "choose" "then" "else" "havoc" "if" "label" "return" "while" "print"
+ "old" "forall" "exists" "new" "foreach" "in" "this" "fresh" "allocated"
"match" "case" "false" "true" "null")) . font-lock-keyword-face)
`(,(dafny-regexp-opt '("array" "array2" "array3" "bool" "nat" "int" "object" "set" "seq")) . font-lock-type-face)
)