aboutsummaryrefslogtreecommitdiff
path: root/coq
diff options
context:
space:
mode:
authorDavid Aspinall1998-10-23 09:50:24 +0000
committerDavid Aspinall1998-10-23 09:50:24 +0000
commit46620558210c52a6ca510a77f2ae3bfc48941a05 (patch)
tree3a9184e10e81a101311c5a67fe2b899484cea67a /coq
parent2e7671f6c80becf896ca1ba4f0f5cb8e05e3b281 (diff)
Replaced remaining face defs with defface calls.
Removed font-lock-<newface> with proof-<newface> so we know where things come from and won't break future font locks.
Diffstat (limited to 'coq')
-rw-r--r--coq/coq-syntax.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/coq/coq-syntax.el b/coq/coq-syntax.el
index 4e1c8c14..ba5fc09b 100644
--- a/coq/coq-syntax.el
+++ b/coq/coq-syntax.el
@@ -167,10 +167,10 @@
(list
;; lambda binders
- (list (coq-abstr-regexp "\\[" ":") 1 'font-lock-declaration-name-face)
+ (list (coq-abstr-regexp "\\[" ":") 1 'proof-declaration-name-face)
;; Pi binders
- (list (coq-abstr-regexp "(" ":") 1 'font-lock-declaration-name-face)
+ (list (coq-abstr-regexp "(" ":") 1 'proof-declaration-name-face)
;; Kinds
(cons (concat "\\<Prop\\>\\|\\<Set\\>\\|\\<Type\\s-*\\(("
@@ -202,10 +202,10 @@
coq-font-lock-terms
(list
(cons (ids-to-regexp coq-keywords) 'font-lock-keyword-face)
- (cons (ids-to-regexp coq-tacticals) 'font-lock-tacticals-name-face)
+ (cons (ids-to-regexp coq-tacticals) 'proof-tacticals-name-face)
(list coq-goal-with-hole-regexp 2 'font-lock-function-name-face)
- (list coq-decl-with-hole-regexp 2 'font-lock-declaration-name-face)
+ (list coq-decl-with-hole-regexp 2 'proof-declaration-name-face)
(list coq-defn-with-hole-regexp 2 'font-lock-function-name-face)
(list coq-save-with-hole-regexp 2 'font-lock-function-name-face))))