aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/tags.ml
diff options
context:
space:
mode:
authorGravatar vgross <vgross@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-10-16 11:58:57 +0000
committerGravatar vgross <vgross@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-10-16 11:58:57 +0000
commit8ba328e305fdd7deb2c024b0cdbb13ff28c6775a (patch)
tree76e7afb61f63148409ff86fdf121b1297be47e51 /ide/tags.ml
parent63f074a7a84efeda3940906120ee52443be3ebda (diff)
note for later : when the tag table is shared, never, ever create two
tags with the same name. This fixes file opening. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12396 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'ide/tags.ml')
-rw-r--r--ide/tags.ml1
1 files changed, 1 insertions, 0 deletions
diff --git a/ide/tags.ml b/ide/tags.ml
index b0b9dc6fb..826fcd962 100644
--- a/ide/tags.ml
+++ b/ide/tags.ml
@@ -30,6 +30,7 @@ struct
let found = make_tag table ~name:"found" [`BACKGROUND "blue"; `FOREGROUND "white"]
let hidden = make_tag table ~name:"hidden" [`INVISIBLE true; `EDITABLE false]
let locked = make_tag table ~name:"locked" [`EDITABLE false; `BACKGROUND "light grey"]
+ let paren = make_tag table ~name:"paren" [`BACKGROUND "purple"]
end
module Proof =
struct