aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgmelquio2009-10-30 13:32:16 +0000
committergmelquio2009-10-30 13:32:16 +0000
commit8190e7cd8e858f5336747bf2a59246753ee83502 (patch)
tree7abfe5fcdd9ae970429bba1f71bdceac3a2d3b32
parent467babb2967b73df3661bb147633345d44255b3f (diff)
Removed 'dest' from keyword highlighting.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12447 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--ide/highlight.mll2
-rw-r--r--tools/coq-syntax.el2
-rw-r--r--tools/coqdoc/output.ml2
3 files changed, 3 insertions, 3 deletions
diff --git a/ide/highlight.mll b/ide/highlight.mll
index ad71be1626..6e4fc05525 100644
--- a/ide/highlight.mll
+++ b/ide/highlight.mll
@@ -34,7 +34,7 @@
let h = Hashtbl.create 97 in
List.iter (fun s -> Hashtbl.add h s ())
[ "forall"; "fun"; "match"; "fix"; "cofix"; "with"; "for";
- "end"; "as"; "let"; "in"; "dest"; "if"; "then"; "else"; "return";
+ "end"; "as"; "let"; "in"; "if"; "then"; "else"; "return";
"Prop"; "Set"; "Type" ];
Hashtbl.mem h
diff --git a/tools/coq-syntax.el b/tools/coq-syntax.el
index f959184663..5b88f6a553 100644
--- a/tools/coq-syntax.el
+++ b/tools/coq-syntax.el
@@ -775,7 +775,7 @@ Used by `coq-goal-command-p'"
"False" "True" "after" "as" "cofix" "fix" "forall" "fun" "match"
"return" "struct" "else" "end" "if" "in" "into" "let" "then"
"using" "with" "beta" "delta" "iota" "zeta" "after" "until"
- "at" "Sort" "Time" "dest"))
+ "at" "Sort" "Time"))
"Reserved keywords of Coq.")
diff --git a/tools/coqdoc/output.ml b/tools/coqdoc/output.ml
index 1d68b010e6..ae35f74458 100644
--- a/tools/coqdoc/output.ml
+++ b/tools/coqdoc/output.ml
@@ -54,7 +54,7 @@ let is_keyword =
"Obligation"; "Obligations"; "Solve"; "using"; "Next Obligation"; "Next";
"Program Instance"; "Equations"; "Equations_nocomp";
(*i (* coq terms *) *)
- "forall"; "match"; "as"; "in"; "return"; "with"; "end"; "let"; "dest"; "fun";
+ "forall"; "match"; "as"; "in"; "return"; "with"; "end"; "let"; "fun";
"if"; "then"; "else"; "Prop"; "Set"; "Type"; ":="; "where"; "struct"; "wf"; "measure";
(* Ltac *)
"before"; "after"