summaryrefslogtreecommitdiff
path: root/Util/Emacs/dafny-mode.el
diff options
context:
space:
mode:
authorGravatar Rustan Leino <leino@microsoft.com>2012-07-03 01:13:44 -0700
committerGravatar Rustan Leino <leino@microsoft.com>2012-07-03 01:13:44 -0700
commitf5b08b01bd06a4ce88f6cc28f30eb180b45d1419 (patch)
treecae4418a6b07e0e8587e49929a86e560793aa11f /Util/Emacs/dafny-mode.el
parentc66dc1ecd384fdcd402a65ac86824327ee32eb1e (diff)
Dafny: added copredicates
Diffstat (limited to 'Util/Emacs/dafny-mode.el')
-rw-r--r--Util/Emacs/dafny-mode.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/Util/Emacs/dafny-mode.el b/Util/Emacs/dafny-mode.el
index 05f06b41..cf2b357f 100644
--- a/Util/Emacs/dafny-mode.el
+++ b/Util/Emacs/dafny-mode.el
@@ -30,7 +30,8 @@
]\\)*" . font-lock-comment-face)
`(,(dafny-regexp-opt '(
- "class" "datatype" "codatatype" "type" "function" "predicate" "ghost" "var" "method" "constructor"
+ "class" "datatype" "codatatype" "type" "function" "predicate" "copredicate"
+ "ghost" "var" "method" "constructor"
"module" "imports" "static" "refines"
"returns" "requires" "ensures" "modifies" "reads" "free"
"invariant" "decreases"