diff options
author | Rustan Leino <leino@microsoft.com> | 2011-11-09 10:26:47 -0800 |
---|---|---|
committer | Rustan Leino <leino@microsoft.com> | 2011-11-09 10:26:47 -0800 |
commit | 59c36ca2dca0158e5fd579f60023b31e3aab845c (patch) | |
tree | da18a922f493d6491e359130ef80353ca9187066 /Util/Emacs/dafny-mode.el | |
parent | 2551eb125aae4fd71eec5465fa919cd58163c105 (diff) |
Dafny: added "multiset" keyword to syntax highlighting in emacs, vim, latex, VSX
Diffstat (limited to 'Util/Emacs/dafny-mode.el')
-rw-r--r-- | Util/Emacs/dafny-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Util/Emacs/dafny-mode.el b/Util/Emacs/dafny-mode.el index cf603751..7235303a 100644 --- a/Util/Emacs/dafny-mode.el +++ b/Util/Emacs/dafny-mode.el @@ -39,7 +39,7 @@ "assert" "assume" "break" "choose" "then" "else" "havoc" "if" "label" "return" "while" "print"
"old" "forall" "exists" "new" "parallel" "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)
+ `(,(dafny-regexp-opt '("array" "array2" "array3" "bool" "multiset" "nat" "int" "object" "set" "seq")) . font-lock-type-face)
)
"Minimal highlighting for Dafny mode")
|