diff options
author | Rustan Leino <leino@microsoft.com> | 2011-06-20 14:49:48 -0700 |
---|---|---|
committer | Rustan Leino <leino@microsoft.com> | 2011-06-20 14:49:48 -0700 |
commit | 8fe68718e3830dce330defe33090f0aa39dfc985 (patch) | |
tree | 7249d29fc04850053a56891640c501e801db5d9b /Util/Emacs | |
parent | e5c8bbcff83c504098b13cfd620aaca0c2e3b58c (diff) |
Dafny: removed deprecated "call" and "use" keywords from syntax highlighters
Diffstat (limited to 'Util/Emacs')
-rw-r--r-- | Util/Emacs/dafny-mode.el | 4 |
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)
)
|