summaryrefslogtreecommitdiff
path: root/Util/Emacs
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
commit8fe68718e3830dce330defe33090f0aa39dfc985 (patch)
tree7249d29fc04850053a56891640c501e801db5d9b /Util/Emacs
parente5c8bbcff83c504098b13cfd620aaca0c2e3b58c (diff)
Dafny: removed deprecated "call" and "use" keywords from syntax highlighters
Diffstat (limited to 'Util/Emacs')
-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)
)