aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/coq-db.el
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <courtieu@lri.fr>2008-10-22 09:26:18 +0000
committerGravatar Pierre Courtieu <courtieu@lri.fr>2008-10-22 09:26:18 +0000
commit2e107f73889a0a22c262b589fd568b35426cbb58 (patch)
treea09ec498c3f746a1a757045fb152e796bae993d3 /coq/coq-db.el
parent475f196370931331d897c2307153247ac71728c6 (diff)
Fixing parenthesis not accepted by recent emacs anymore. fix by Stefan
Monnier.
Diffstat (limited to 'coq/coq-db.el')
-rw-r--r--coq/coq-db.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/coq/coq-db.el b/coq/coq-db.el
index 627ec241..4a62c30f 100644
--- a/coq/coq-db.el
+++ b/coq/coq-db.el
@@ -220,8 +220,8 @@ See `coq-syntax-db' for DB structure."
;;A new face for tactics which fail when they don't kill the current goal
(defface coq-solve-tactics-face
(proof-face-specs
- (:foreground "red" t) ; pour les fonds clairs
- (:foreground "red" t) ; pour les fond foncés
+ (:foreground "red") ; pour les fonds clairs
+ (:foreground "red") ; pour les fond foncés
()) ; pour le noir et blanc
"Face for names of closing tactics in proof scripts."
:group 'proof-faces)