aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/coq-db.el
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <courtieu@lri.fr>2015-04-14 13:53:21 +0000
committerGravatar Pierre Courtieu <courtieu@lri.fr>2015-04-14 13:53:21 +0000
commitf7434ea0d899e4a95b48a47dbc0fd84e9e4bc5b0 (patch)
treef32678cce1c77a3bac65e4057483733fe80e6aae /coq/coq-db.el
parent6de817881dd92175165b47c672e4ab7d9fb3e4c2 (diff)
bold unicode biders + Fixing highlighting in goals and response buffers + cleaning.
Diffstat (limited to 'coq/coq-db.el')
-rw-r--r--coq/coq-db.el13
1 files changed, 11 insertions, 2 deletions
diff --git a/coq/coq-db.el b/coq/coq-db.el
index 45f2309f..dc83c85f 100644
--- a/coq/coq-db.el
+++ b/coq/coq-db.el
@@ -300,13 +300,22 @@ See `coq-syntax-db' for DB structure."
"Face for names of cheating tactics in proof scripts."
:group 'proof-faces)
+(defface coq-symbol-binder-face
+ '((t :inherit font-lock-type-face :bold coq-bold-unicode-binders))
+ "Face for unicode binders, by default a bold version of `font-lock-type-face'."
+ :group 'proof-faces)
+
(defconst coq-solve-tactics-face 'coq-solve-tactics-face
"Expression that evaluates to a face.
-Required so that 'proof-solve-tactics-face is a proper facename")
+Required so that 'coq-solve-tactics-face is a proper facename")
(defconst coq-cheat-face 'coq-cheat-face
"Expression that evaluates to a face.
-Required so that 'proof-solve-tactics-face is a proper facename")
+Required so that 'coq-cheat-face is a proper facename")
+
+(defconst coq-symbol-binder-face 'coq-symbol-binder-face
+ "Expression that evaluates to a face.
+Required so that 'coq-symbol-binder-face is a proper facename")