diff options
| author | Thomas Kleymann | 1998-11-03 11:47:13 +0000 |
|---|---|---|
| committer | Thomas Kleymann | 1998-11-03 11:47:13 +0000 |
| commit | af1e37834fca25210821a558b638e98309643293 (patch) | |
| tree | 9ff57a7da348bbfef26c65d93a63039fa38efa1b /coq | |
| parent | 6549a40f3ab0eefdcd827ed4449884239c0bf2b2 (diff) | |
fixed bug with font-lock face names
Diffstat (limited to 'coq')
| -rw-r--r-- | coq/coq-syntax.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/coq/coq-syntax.el b/coq/coq-syntax.el index e0ddba66..16f2a15f 100644 --- a/coq/coq-syntax.el +++ b/coq/coq-syntax.el @@ -167,10 +167,10 @@ (list ;; lambda binders - (list (coq-abstr-regexp "\\[" ":") 1 ''proof-declaration-name-face) + (list (coq-abstr-regexp "\\[" ":") 1 'proof-declaration-name-face) ;; Pi binders - (list (coq-abstr-regexp "(" ":") 1 ''proof-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 (proof-ids-to-regexp coq-keywords) 'font-lock-keyword-face) - (cons (proof-ids-to-regexp coq-tacticals) ''proof-tacticals-name-face) + (cons (proof-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 ''proof-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)))) |
