diff options
author | Rustan Leino <unknown> | 2014-02-13 20:00:42 -0800 |
---|---|---|
committer | Rustan Leino <unknown> | 2014-02-13 20:00:42 -0800 |
commit | 6897d8be8a9c5ebef140398f682021acfea393bb (patch) | |
tree | f9837352353c4b539a0f2d90cee9ea756ff60942 /Util/Emacs | |
parent | 51406ab951236f10935bae6c653dad866b90f874 (diff) |
Syntax highlighting for reals
Diffstat (limited to 'Util/Emacs')
-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 204dec45..c77fed74 100644 --- a/Util/Emacs/dafny-mode.el +++ b/Util/Emacs/dafny-mode.el @@ -42,7 +42,7 @@ "while" "print" "where"
"old" "forall" "exists" "new" "calc" "in" "this" "fresh"
"match" "case" "false" "true" "null")) . font-lock-keyword-face)
- `(,(dafny-regexp-opt '("array" "array2" "array3" "bool" "multiset" "map" "nat" "int" "object" "set" "seq")) . font-lock-type-face)
+ `(,(dafny-regexp-opt '("array" "array2" "array3" "bool" "multiset" "map" "nat" "int" "real" "object" "set" "seq")) . font-lock-type-face)
)
"Minimal highlighting for Dafny mode")
|